Example #1
0
 public JumpCommand(LuaNPC parent)
     : base(parent)
 {
 }
Example #2
0
 public AIQueue(LuaNPC parent)
 {
     _parent = parent;
     _queue = new List<AICommand>();
 }
Example #3
0
 public WaitCommand(LuaNPC parent, float time)
     : base(parent)
 {
     _time = time;
 }
Example #4
0
 public AICommand(LuaNPC parent)
 {
     _parent = parent;
 }
Example #5
0
 public MoveCommand(LuaNPC parent, float time, float dir)
     : base(parent)
 {
     _time = time;
     _dir = dir;
 }
Example #6
0
 public LuaCommand(LuaNPC parent, Player player, string command)
     : base(parent)
 {
     _command = command;
     _target = player;
 }