2016-08-21 21:21:56 +02:00
|
|
|
#ifndef H_GC_VOLCANO
|
|
|
|
#define H_GC_VOLCANO
|
2018-02-15 20:25:58 +01:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2016-08-21 21:21:56 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct region;
|
|
|
|
|
2016-08-26 18:26:26 +02:00
|
|
|
void volcano_outbreak(struct region * r, struct region *rn);
|
2016-08-22 21:27:24 +02:00
|
|
|
void volcano_update(void);
|
2017-11-06 21:04:30 +01:00
|
|
|
bool volcano_module(void);
|
2016-08-22 21:27:24 +02:00
|
|
|
|
2016-08-21 21:21:56 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|