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