예제 #1
0
 public Multiboxer()
 {
     FSM = new Engine();
     FSM.LoadStates(new List<State>()
     {
         new MBStopFollow(this),
         new MBCombat(this),
         new MBLoot(this),
         new MBFollow(this),
         new MBIdle(),
     });
 }
예제 #2
0
 public Grindbot()
 {
     FSM = new Engine(333);
 }