diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-06-20 12:40:18 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-06-20 12:40:18 (GMT) |
| commit | 2be9c925088c16beb144dd9932202416d00ff581 (patch) | |
| tree | 51f8ccbf2b0b051890c5f5d12fa28a67635c06c2 /src/game/Notification.h | |
| parent | 9769239af69695e9a7f8cf103a197695ecf691e0 (diff) | |
| download | powder-2be9c925088c16beb144dd9932202416d00ff581.zip powder-2be9c925088c16beb144dd9932202416d00ff581.tar.gz | |
OpenGL canvas for Windows, Notifications for main Game, Update checker in Client (+ other client triggered events)
Diffstat (limited to 'src/game/Notification.h')
| -rw-r--r-- | src/game/Notification.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/game/Notification.h b/src/game/Notification.h new file mode 100644 index 0000000..4c64dea --- /dev/null +++ b/src/game/Notification.h @@ -0,0 +1,23 @@ +/* + * Notification.h + * + * Created on: Jun 20, 2012 + * Author: Simon + */ + +#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_ */ |
