예제 #1
0
 public static void SendCommand <T>(this ICanSendCommand self) where T : ICommand, new()
 {
     self.Architecture.SendCommand <T>();
 }
예제 #2
0
 public static void SendCommand(this ICanSendCommand self, ICommand command)
 {
     self.Architecture.SendCommand(command);
 }
예제 #3
0
파일: QFramework.cs 프로젝트: bournes/kkxv
 public static void SendCommand <T>(this ICanSendCommand self, T command) where T : ICommand
 {
     self.GetArchitecture().SendCommand <T>(command);
 }