minecraft-pi-reborn/mods/src/server/server.h
TheBrokenRail 6e18ee44fb
All checks were successful
minecraft-pi-docker/pipeline/head This commit looks good
Reduce Server Patches
2020-12-01 12:02:48 -05:00

20 lines
201 B
C

#ifndef SERVER_H
#define SERVER_H
#ifdef __cplusplus
extern "C" {
#endif
void server_init();
const char *server_get_motd();
const char *server_get_features();
#ifdef __cplusplus
}
#endif
#endif