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]
/
statusbar.h
blob
efdcdacd87bb65bea44321f230719ac9eaf68424
1
2
#ifndef _STATUSBAR_H
3
#define _STATUSBAR_H
4
5
struct
PercentBar
6
{
7
int
displayed_value
;
8
int
dectimer
;
9
};
10
11
struct
StatusBar
12
{
13
int
xpflashcount
;
14
int
xpflashstate
;
15
};
16
17
extern
StatusBar statusbar
;
18
void
niku_draw
(
int
value
,
bool
force_white
=
false
);
19
20
void
stat_PrevWeapon
(
bool
quiet
=
false
);
21
void
stat_NextWeapon
(
bool
quiet
=
false
);
22
23
#endif