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