Exemplo n.º 1
0
 public GameState(Dictionary<int, Entity> entities, ActionType type)
 {
     AllEntities = entities;
     Type = type;
     Player1 = new Player(entities, 1);
     Player2 = new Player(entities, 2);
 }
Exemplo n.º 2
0
		public GameState(Dictionary<int, Entity> entities)
		{
			AllEntities = entities;
            Player1 = new Player(entities, 1);
			Player2 = new Player(entities, 2);
		}