You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should provide the following Command constructors, mainly useful for simple commands definition:
// default, current statenewCommand()// single-trigger command
new Command("TurnOnLight","turn on the light");// multi-trigger command// IEnumerable<string> and params string[]newCommand("TurnOnLight","turn on the light","light on","light on");
The text was updated successfully, but these errors were encountered:
We should provide the following
Command
constructors, mainly useful for simple commands definition:The text was updated successfully, but these errors were encountered: