server/src/wormhole.h
2019-09-13 21:35:44 +02:00

17 lines
300 B
C

#ifndef H_MOD_WORMHOLE
#define H_MOD_WORMHOLE
#ifdef __cplusplus
extern "C" {
#endif
struct region;
struct building;
void wormholes_update(void);
void wormholes_register(void);
void wormhole_transfer(struct building *b, struct region *exit);
#ifdef __cplusplus
}
#endif
#endif