示例#1
0
 /**
  * desc here
  *
  * @param paramsdeschere
  *
  * @return returndeschere
  */
 public static void redo()
 {
     if (undos.Count() > 0)
     {
         ToolAction tool = undos.Pop();
         toolAction.Push(tool);
         tool.doAction();
     }
 }