2024-08-26 21:33:37 +00:00
|
|
|
#ifndef TWN_ENGINE_API_H
|
|
|
|
#define TWN_ENGINE_API_H
|
|
|
|
|
|
|
|
#if defined(__WIN32)
|
|
|
|
#define TWN_API __declspec(dllexport)
|
|
|
|
#else
|
2024-10-13 16:03:29 +00:00
|
|
|
#define TWN_API __attribute__((visibility("default")))
|
2024-08-26 21:33:37 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|