repo.or.cz
/
NXEngine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
NXEngine v1.0.0.6
[NXEngine.git]
/
pause
/
message.h
blob
7a971b93e6dabdd7818c4d552b6439b58ad1f66d
1
2
#ifndef _MESSAGE_H
3
#define _MESSAGE_H
4
5
#include
"options.h"
6
namespace
Options
{
7
8
class
Message
:
public
FocusHolder
9
{
10
public
:
11
Message
(
const char
*
msg
,
const char
*
msg2
=
NULL
);
12
~
Message
();
13
14
void
Draw
();
15
void
RunInput
();
16
17
int
*
rawKeyReturn
;
18
void
(*
on_dismiss
)(
Message
*
msg
);
19
20
private
:
21
char
*
fMsg
, *
fMsg2
;
22
int
fMsgX
,
fMsgY
;
23
int
fMsg2X
,
fMsg2Y
;
24
25
int
fShowDelay
;
26
};
27
28
29
}
30
31
#endif