Ejemplo n.º 1
0
 public StackerWorkData(Int32 _x = 0, Int32 _y = 0, Int32 _z = 0, StackerCommand _cmd = null)
 {
     X   = _x;
     Y   = _y;
     Z   = _z;
     cmd = _cmd;
 }
Ejemplo n.º 2
0
 private void addcommand(StackerCommand scmd)
 {
     this.CmdQueue.Add(scmd);
     if (CmdQueue.Count == 1)
     {
         CurrCmdIdx = 0;
         exe_command();
     }
 }
Ejemplo n.º 3
0
 public void kvit()
 {
     if (RemoveOnKvit)
     {
         if (Cycle)
         {
             Cycle = false;
             next();
             Cycle = true;
         }
         else
         {
             next();
         }
     }
     else
     {
         CurrCmd = null;
         exe_command();
     }
 }