Esempio n. 1
0
 public void InsertCommand(int index, String type, List<String> sargs, List<int> iargs, GUI gui = null)
 {
     Command newcom = new Command(type, sargs, iargs, gui);
     Commands.Insert(index, newcom);
 }
Esempio n. 2
0
 public void AddCommand(String type, List<String> sargs, List<int> iargs, GUI gui = null)
 {
     Command newcom = new Command(type, sargs, iargs, gui);
     Commands.Add(newcom);
 }