Exemplo n.º 1
0
 public static void Start(WalkerModel model)
 {
     Game.model = model;
     agent      = new AI.WalkerAgent(model.Player.Position);
     ai         = new AI.ModelledWalkerAI(agent, 40.0f, 300.0f);
     Load();
 }
Exemplo n.º 2
0
 public static void Clear()
 {
     ai               = null;
     model            = null;
     agent            = null;
     Statistics.wins  = 0;
     Statistics.loses = 0;
 }