blob: d82a27d69e510bb4418b6b27a021fd7e754b398e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
#ifndef ENGINE_CLIENT_INTERFACE_H
#define ENGINE_CLIENT_INTERFACE_H
#ifdef __cplusplus
extern "C" {
#endif
#include "e_if_other.h"
#include "e_if_client.h"
#include "e_if_snd.h"
#include "e_if_gfx.h"
#include "e_if_inp.h"
#include "e_if_msg.h"
#include "e_if_modc.h"
#ifdef __cplusplus
}
#endif
#endif
|