summaryrefslogtreecommitdiff
path: root/src/gui/game/Notification.h
blob: b2bf6f81f565c2555bc4f804642594f230543081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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_ */