repo.or.cz
/
runemen.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Clean up a little bit.
[runemen.git]
/
src
/
runeconf.h
blob
285d6dae5055b1e01bedcea479e8ff5e82a5b2e9
1
#ifndef _RUNE_CONF_H
2
#define _RUNE_CONF_H
3
4
#include <SDL.h>
5
6
#define MAX_BUNITS 128
7
#define MAX_BHOUSES 64
8
9
extern
unit_p bunits
[
MAX_BUNITS
];
10
extern
house_p bhouses
[
MAX_BHOUSES
];
11
12
extern
Uint16 num_bunits
;
13
extern
Uint16 num_bhouses
;
14
15
16
extern
int
cfg_load
(
const char
*
filename
);
17
18
#endif