11 lines
149 B
C
11 lines
149 B
C
|
#ifndef TWN_ENGINE_API_H
|
||
|
#define TWN_ENGINE_API_H
|
||
|
|
||
|
#if defined(__WIN32)
|
||
|
#define TWN_API __declspec(dllexport)
|
||
|
#else
|
||
|
#define TWN_API
|
||
|
#endif
|
||
|
|
||
|
#endif
|