CommandSystem.cs 307 B

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