示例#1
0
 public ComboDirectCmd(DirectState blueState, DirectState redState)
     : this()
 {
     BlueState = blueState;
     RedState  = redState;
 }
示例#2
0
 public static ICommand Create(DirectState blueState, DirectState redState)
 {
     return(new ComboDirectCmd(blueState, redState));
 }
示例#3
0
        public void Execute(DirectState blueState, DirectState redState)
        {
            var command = CommandFactory.Create(blueState, redState);

            m_CommandProcessor.Execute(command);
        }