Gablarski.Clients.Input.CommandStateChangedEventArgs.CommandStateChangedEventArgs C# (CSharp) 메소드

CommandStateChangedEventArgs() 공개 메소드

Initializes a new instance of the CommandStateChangedEventArgs class.
public CommandStateChangedEventArgs ( Command command, object state ) : System
command Command The command that's state has changed.
state object The new state of the .
리턴 System
        public CommandStateChangedEventArgs(Command command, object state)
        {
            Command = command;
            State = state;
        }
CommandStateChangedEventArgs