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