コード例 #1
0
ファイル: InputAction.cs プロジェクト: Gothen111/2DWorld
 public InputAction(List<Keys> _KeysToWatchOn, Command _Command)
 {
     this.keysToWatchOn = _KeysToWatchOn;
     this.command = _Command;
 }
コード例 #2
0
ファイル: Executer.cs プロジェクト: Gothen111/2DWorld
 public int getCommandIndex(Command command)
 {
     return scheduledCommands.IndexOf(command);
 }
コード例 #3
0
ファイル: Executer.cs プロジェクト: Gothen111/2DWorld
 public void removeCommand(Command command)
 {
     removeCommand(getCommandIndex(command));
 }
コード例 #4
0
ファイル: Executer.cs プロジェクト: Gothen111/2DWorld
 public void addCommand(Command command)
 {
     scheduledCommands.Add(command);
 }