예제 #1
0
파일: UndoSystem.cs 프로젝트: nistck/Jx
 public static void Shutdown()
 {
     if (instance != null)
     {
         instance.Clear();
         instance = null;
     }
 }
예제 #2
0
파일: UndoSystem.cs 프로젝트: nistck/Jx
 public static void Init(int maxLevel)
 {
     Trace.Assert(instance == null);
     instance = new UndoSystem(maxLevel);
 }