public Player(ParriskGame game, string name, Color color, bool isNpc) { Game = game; Name = name; Color = color; IsNpc = isNpc; }
// Combat phase public void Init(ParriskGame game) { Game = game; Init(game.Map); State = InputState.Idle; }