mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
22 lines
377 B
C
22 lines
377 B
C
|
/* 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
|