mirror of
https://github.com/ConjureETS/DeathBook.git
synced 2026-03-24 04:20:58 +00:00
19 lines
305 B
C#
19 lines
305 B
C#
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DeathBook.Model
|
|
{
|
|
public class Level
|
|
{
|
|
private int score;
|
|
|
|
private List<Person> peeps;
|
|
private List<Friendship> friendships;
|
|
|
|
|
|
//private Generator gen;
|
|
private int gameTime;
|
|
private int globalAwareness;
|
|
}
|
|
}
|