NXEngine v1.0.0.5
[NXEngine.git] / pause / message.h
blob7a971b93e6dabdd7818c4d552b6439b58ad1f66d
2 #ifndef _MESSAGE_H
3 #define _MESSAGE_H
5 #include "options.h"
6 namespace Options {
8 class Message : public FocusHolder
10 public:
11 Message(const char *msg, const char *msg2 = NULL);
12 ~Message();
14 void Draw();
15 void RunInput();
17 int *rawKeyReturn;
18 void (*on_dismiss)(Message *msg);
20 private:
21 char *fMsg, *fMsg2;
22 int fMsgX, fMsgY;
23 int fMsg2X, fMsg2Y;
25 int fShowDelay;
31 #endif