summaryrefslogtreecommitdiff
path: root/src/gui/game/Notification.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/game/Notification.h')
-rw-r--r--src/gui/game/Notification.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gui/game/Notification.h b/src/gui/game/Notification.h
new file mode 100644
index 0000000..b2bf6f8
--- /dev/null
+++ b/src/gui/game/Notification.h
@@ -0,0 +1,16 @@
+#ifndef NOTIFICATION_H_
+#define NOTIFICATION_H_
+
+#include <string>
+
+class Notification
+{
+public:
+ Notification(std::string message) : Message(message) {}
+ virtual ~Notification() {};
+ std::string Message;
+
+ virtual void Action() { }
+};
+
+#endif /* NOTIFICATION_H_ */