blob: 6a26b384a81d9aeeecb8bb1f0cc4ee47fe74dd58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef INFORMATIONMESSAGE_H_
#define INFORMATIONMESSAGE_H_
#include "gui/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_ */
|