namespace Blue { public class CommandSystem : SingletonMonobehaviour { /// /// 发送命令 /// public void Send(ICommand command) { this.SendCommand(command); } } }