Example #1
0
 private void addActRedo(string str, Act.ActType type)
 {
     redoList.Push(new Act(type, str));
     disRedo();
 }
Example #2
0
 private void addActUndo(string str, Act.ActType type)
 {
     undoList.Push(new Act(type, str));
     disUndo();
 }