CommandSystem.cs 240 B

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