summaryrefslogtreecommitdiff
path: root/Other/NodeEditorExamples/Assets/UNEB/Editor/Actions/UndoableAction.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Other/NodeEditorExamples/Assets/UNEB/Editor/Actions/UndoableAction.cs')
-rw-r--r--Other/NodeEditorExamples/Assets/UNEB/Editor/Actions/UndoableAction.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Other/NodeEditorExamples/Assets/UNEB/Editor/Actions/UndoableAction.cs b/Other/NodeEditorExamples/Assets/UNEB/Editor/Actions/UndoableAction.cs
new file mode 100644
index 00000000..53857a9f
--- /dev/null
+++ b/Other/NodeEditorExamples/Assets/UNEB/Editor/Actions/UndoableAction.cs
@@ -0,0 +1,12 @@
+
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace UNEB
+{
+ public abstract class UndoableAction : ActionBase
+ {
+ public abstract void Undo();
+ public abstract void Redo();
+ }
+} \ No newline at end of file