public CommandPool(int maxCommandCount) { toRedoStack = new Stack <ICommand>(); toUndoDeque = new Deque <ICommand>(maxCommandCount); this.maxCommandCount = maxCommandCount; }
public CommandPool() { toRedoStack = new Stack <ICommand>(); toUndoDeque = new Deque <ICommand>(); this.maxCommandCount = 1; }