mirror of
https://github.com/ConjureETS/DeathBook.git
synced 2026-03-24 20:40:57 +00:00
Added Friendship Created a namespace for models Signed-off-by: RosimInc <rosim_inc@hotmail.com>
15 lines
247 B
C#
15 lines
247 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
namespace DeathBook.Model
|
|
{
|
|
public class Level
|
|
{
|
|
private int points;
|
|
private Person[] peeps;
|
|
//private Generator gen;
|
|
private int gameTime;
|
|
private int globalAwareness;
|
|
}
|
|
}
|