CommandSystem.cs 285 B

12345678910111213
  1. namespace Blue
  2. {
  3. public class CommandSystem : SingletonMonobehaviour<CommandSystem>
  4. {
  5. /// <summary>
  6. /// 发送命令
  7. /// </summary>
  8. public void Send(ICommand command)
  9. {
  10. this.SendCommand(command);
  11. }
  12. }
  13. }