blob: 5b1e63275ffe1bfe0d353cb83c1776908071c67f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* 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
|