mirror of
https://github.com/ConjureETS/DeathBook.git
synced 2026-03-24 12:30:59 +00:00
25 lines
445 B
C#
25 lines
445 B
C#
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DeathBook.Model
|
|
{
|
|
public class Level
|
|
{
|
|
private int score;
|
|
|
|
public List<Person> people;
|
|
public List<Friendship> friendships;
|
|
|
|
|
|
//private Generator gen;
|
|
private int gameTime;
|
|
private int globalAwareness;
|
|
|
|
public Level(List<Person> people, List<Friendship> friendships)
|
|
{
|
|
this.people = people;
|
|
this.friendships = friendships;
|
|
}
|
|
}
|
|
}
|