mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
17 lines
263 B
C
17 lines
263 B
C
|
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
|
||
|
#ifndef ENGINE_COMMON_INTERFACE_H
|
||
|
#define ENGINE_COMMON_INTERFACE_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "e_if_other.h"
|
||
|
#include "e_if_msg.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|