summaryrefslogtreecommitdiff
path: root/engine-ocean/Game/Systems/UI/ButtonAction/buttonaction.h
diff options
context:
space:
mode:
Diffstat (limited to 'engine-ocean/Game/Systems/UI/ButtonAction/buttonaction.h')
-rw-r--r--engine-ocean/Game/Systems/UI/ButtonAction/buttonaction.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/engine-ocean/Game/Systems/UI/ButtonAction/buttonaction.h b/engine-ocean/Game/Systems/UI/ButtonAction/buttonaction.h
new file mode 100644
index 0000000..d6c1674
--- /dev/null
+++ b/engine-ocean/Game/Systems/UI/ButtonAction/buttonaction.h
@@ -0,0 +1,13 @@
+#ifndef BUTTONACTION_H
+#define BUTTONACTION_H
+
+
+class ButtonAction
+{
+public:
+ ButtonAction();
+ virtual void activate() = 0;
+ virtual void deactivate() = 0;
+};
+
+#endif // BUTTONACTION_H