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