예제 #1
0
파일: Mememto.cs 프로젝트: SteveDunn/oglr
 public void UndoMany( Command c )
 {
     while( _redoBuffer.Count == 0 || _redoBuffer.Peek( ) != c )
     {
         Undo( ) ;
     }
 }
예제 #2
0
파일: Mememto.cs 프로젝트: SteveDunn/oglr
 public void RedoMany( Command command )
 {
     while( _undoBuffer.Count == 0 || _undoBuffer.Peek( ) != command )
     {
         Redo( ) ;
     }
 }