mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 03:28:19 +00:00
21 lines
360 B
C
21 lines
360 B
C
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
|
|
#ifndef ENGINE_SERVER_INTERFACE_H
|
|
#define ENGINE_SERVER_INTERFACE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "e_if_other.h"
|
|
#include "e_if_server.h"
|
|
#include "e_if_msg.h"
|
|
#include "e_if_mods.h"
|
|
|
|
#include "e_console.h" /* TODO: clean this up*/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|