mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-15 20:08:54 +03:00
Huge rework of editor and other changes.
This commit is contained in:
15
Editor/src/Actions/EditorAction.h
Normal file
15
Editor/src/Actions/EditorAction.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
enum ActionType
|
||||
{
|
||||
SAVE, TRANSLATE
|
||||
};
|
||||
|
||||
class EditorAction
|
||||
{
|
||||
private:
|
||||
|
||||
public:
|
||||
virtual void Do() = 0;
|
||||
virtual void Undo() = 0;
|
||||
};
|
||||
Reference in New Issue
Block a user