summaryrefslogtreecommitdiff
path: root/src/dialogues/InformationMessage.h
blob: 1df479442f4bcaef912763d4155aaa0a394eaf91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef INFORMATIONMESSAGE_H_
#define INFORMATIONMESSAGE_H_

#include "interface/Window.h"

class InformationMessage: public ui::Window {
public:
	InformationMessage(std::string title, std::string message, bool large);
	virtual void OnDraw();
	virtual ~InformationMessage();
};

#endif /* INFORMATIONMESSAGE_H_ */