2016-12-23 18:05:38 +01:00
|
|
|
#ifndef H_GC_MONSTER
|
|
|
|
#define H_GC_MONSTER
|
2017-01-10 18:20:47 +01:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2016-12-23 18:05:38 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct unit;
|
|
|
|
struct region;
|
|
|
|
struct faction;
|
2018-04-22 19:04:09 +02:00
|
|
|
struct order;
|
|
|
|
struct locale;
|
2016-12-23 18:05:38 +01:00
|
|
|
|
|
|
|
struct unit *spawn_seaserpent(struct region *r, struct faction *f);
|
|
|
|
void spawn_dragons(void);
|
|
|
|
void monsters_desert(struct faction *monsters);
|
|
|
|
|
|
|
|
void monster_kills_peasants(struct unit *u);
|
|
|
|
bool monster_is_waiting(const struct unit *u);
|
|
|
|
void make_zombie(struct unit * u);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|