Esempio n. 1
0
		internal CommandHistory()
		{
			maxDepth = 10;
			commands = new CommandCollection(maxDepth);
			commandList = new CommandList(commands);
			currCmd = -1;
		}
Esempio n. 2
0
		public CommandList(CommandCollection innerCollection)
		{
			innerList = innerCollection.getInnerList();
		}
Esempio n. 3
0
		public Command(string title)
		{
			subCommands = new CommandCollection();
			this.title = title;
		}
Esempio n. 4
0
 public CommandList(CommandCollection innerCollection)
 {
     innerList = innerCollection.getInnerList();
 }
Esempio n. 5
0
 public Command(string title)
 {
     subCommands = new CommandCollection();
     this.title  = title;
 }