Exemplo n.º 1
0
 public CommandSave(CommandBook book) : base("save", "save", CommandType.Save, "Saves the current command list to the drive")
 {
     this.book = book;
 }
Exemplo n.º 2
0
 public CommandEditCommand(CommandBook book) : base("editcmd", "edit", CommandType.EditCmd, "Edits an existing command or creates it if it does not exist")
 {
     this.book = book;
 }
Exemplo n.º 3
0
 public CommandLoad(CommandBook book) : base("load", "load", CommandType.Load, "Loads the commands from the specified location")
 {
     this.book = book;
 }