Example #1
0
 // Properties
 public bool CanExecute(Command cmd)
 {
     return cmd.CanUse(groupLevel);
 }
Example #2
0
 public bool Contains(Command cmd)
 {
     return commands.Contains(cmd);
 }
Example #3
0
 public bool Remove(Command cmd)
 {
     return commands.Remove(cmd);
 }
Example #4
0
 public void Add(Command cmd)
 {
     commands.Add(cmd);
 }