예제 #1
0
        public AIDecision(BattleField world, AIPlayer player)
        {
            this.world  = world;
            this.player = player;
            this.area   = player.Area;


            helper = new AIDecisionHelper(world);

            area.NewCity  += PlayerArea_NewCity;
            area.LostCity += PlayerArea_RemoveCity;
        }
예제 #2
0
        public AIDecision(BattleField world, AIPlayer player)
        {
            this.world = world;
            this.player = player;
            this.area = player.Area;


            helper = new AIDecisionHelper(world);

            area.NewCity += PlayerArea_NewCity;
            area.LostCity += PlayerArea_RemoveCity;

        }