IActionHistory represents a recorded list of actions undertaken by user. This class implements a usual, linear action sequence. You can move back and forth changing the state of the respective document. When you move forward, you execute a respective action, when you move backward, you Undo it (UnExecute). Implemented through a double linked-list of SimpleHistoryNode objects. ====================================================================
Inheritance: IActionHistory
示例#1
0
 public ActionManager()
 {
     History = new SimpleHistory();
 }
 public ActionManager()
 {
     History = new SimpleHistory();
 }
示例#3
0
 // Use this for initialization
 void Start()
 {
     History = new SimpleHistory();
 }