forked from github/server
81bfb598d0
- cansee_* rules to laws.c - translations to language.c - stealth to attributes/, - rename build.h -> buildno.h
19 lines
359 B
C
19 lines
359 B
C
#ifndef STEALTH_H
|
|
#define STEALTH_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct unit;
|
|
struct region;
|
|
extern struct attrib_type at_stealth;
|
|
int eff_stealth(const struct unit *u, const struct region *r);
|
|
void u_seteffstealth(struct unit *u, int value);
|
|
int u_geteffstealth(const struct unit *u);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|