mirror of
https://github.com/ConjureETS/DeathBook.git
synced 2026-03-24 04:20:58 +00:00
11 lines
201 B
C#
11 lines
201 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class Level {
|
|
private int points;
|
|
private Person[] peeps;
|
|
//private Generator gen;
|
|
private int gameTime;
|
|
private int globalAwareness;
|
|
}
|