public GameV2() { Player = new Player(this, true); Opponent = new Player(this, false); IsInMenu = true; OpponentSecrets = new OpponentSecrets(this); Reset(); }
public GameV2() { Player = new Player(true); Opponent = new Player(false); Entities = new Dictionary<int, Entity>(); CurrentGameMode = GameMode.None; IsInMenu = true; PossibleArenaCards = new List<Card>(); PossibleConstructedCards = new List<Card>(); OpponentSecrets = new OpponentSecrets(); }