19 lines
196 B
C
19 lines
196 B
C
|
#ifndef SERVER_H
|
||
|
|
||
|
#define SERVER_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void server_init();
|
||
|
|
||
|
const char *server_get_motd();
|
||
|
int server_get_mob_spawning();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|