コード例 #1
0
 public void setCommand(int slot, Command cmd)
 {
     if (slot >= 0 && slot < _commandCount)
     {
         _commands[slot] = cmd;
     }
 }
コード例 #2
0
ファイル: Command.cs プロジェクト: zhangyinglong/zyl_04401
 public MacroCommand(Command[] commands, Reciver reciver = null)
     : base(reciver)
 {
     _commands = commands;
 }