Пример #1
0
        public DecisionTree(IMapController map, AIEasy ai)
        {
            actionSource = new List<ActionSource>();
            activeState = new ActiveState();

            this.map = map;
            this.ai = ai;

            BuildTree();
        }
Пример #2
0
 public static void SetMapController(IMapController mapController, AIEasy aiEasy)
 {
     map = mapController;
     ai = aiEasy;
 }
Пример #3
0
 public IComponentAI Clone()
 {
     IComponentAI component = new AIEasy();
     return component;
 }