blob: 6f031547345dd06068adbe5d4671ae9549573849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* InformationMessage.h
*
* Created on: Jan 29, 2012
* Author: Simon
*/
#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_ */
|