Exemplo n.º 1
0
 public void AddControllerInputEvent(CommandControllerInput command, Action <ControllerCommandArgs> action)
 {
     controllerInputCommand[command] += action;
 }
Exemplo n.º 2
0
 public void Send(CommandControllerInput command)
 {
     controllerInputCommand[command]?.Invoke(ControllerCommandArgs.Empty);
 }