/* * 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_ */