blob: 8032311136a105015e4af3eca8d53a47a6cdd8cf (
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);
virtual void OnDraw();
virtual ~InformationMessage();
};
#endif /* INFORMATIONMESSAGE_H_ */
|