Adding ActionManager

This commit is contained in:
brunoherbelin
2020-10-03 14:05:58 +02:00
parent f32b85a656
commit 3e5b1e74e8
3 changed files with 60 additions and 0 deletions

28
ActionManager.cpp Normal file
View File

@@ -0,0 +1,28 @@
#include "ActionManager.h"
Action::Action()
{
}
void Action::clear()
{
}
void Action::capture()
{
}
void Action::undo()
{
}
void Action::redo()
{
}