Beispiel #1
0
 public Player(ParriskGame game, string name, Color color, bool isNpc)
 {
     Game  = game;
     Name  = name;
     Color = color;
     IsNpc = isNpc;
 }
Beispiel #2
0
        // Combat phase


        public void Init(ParriskGame game)
        {
            Game = game;
            Init(game.Map);
            State = InputState.Idle;
        }