2023-10-29 03:59:53 +00:00
|
|
|
// NOTE: feely_pona ================================================================================
|
|
|
|
// Unity build header to compile the entire application as a single translation unit
|
2023-09-16 02:21:24 +00:00
|
|
|
|
2023-10-29 04:14:07 +00:00
|
|
|
#define TELY_PLATFORM_DLL_FILE_NAME "terry_cherry_dev_dll"
|
2023-12-01 05:46:58 +00:00
|
|
|
#include "External/tely/tely_backend_raylib_unity.h"
|
2023-09-16 02:21:24 +00:00
|
|
|
|
2023-10-29 03:59:53 +00:00
|
|
|
// NOTE: feely_pona ================================================================================
|
|
|
|
#if defined(_CLANGD) || defined(FEELY_PONA_IMPLEMENTATION)
|
2023-10-10 12:00:35 +00:00
|
|
|
DQN_MSVC_WARNING_PUSH
|
2023-09-16 02:21:24 +00:00
|
|
|
DQN_MSVC_WARNING_DISABLE(4505) // warning C4505: unreferenced function with internal linkage has been removed
|
2023-09-25 14:07:39 +00:00
|
|
|
#include "feely_pona.h"
|
2023-09-24 14:43:22 +00:00
|
|
|
#include "feely_pona_stdlib.h"
|
2023-09-24 08:16:14 +00:00
|
|
|
#include "feely_pona_entity.h"
|
2023-09-23 02:33:59 +00:00
|
|
|
#include "feely_pona_game.h"
|
2023-09-16 02:21:24 +00:00
|
|
|
|
2023-10-19 13:20:41 +00:00
|
|
|
#include "feely_pona_entity.cpp"
|
2023-09-17 10:13:17 +00:00
|
|
|
#include "feely_pona_game.cpp"
|
2023-09-29 05:11:54 +00:00
|
|
|
#include "feely_pona_entity_create.cpp"
|
2023-09-24 08:05:28 +00:00
|
|
|
#include "feely_pona_misc.cpp"
|
2023-09-16 02:33:40 +00:00
|
|
|
#include "feely_pona.cpp"
|
2023-10-10 12:00:35 +00:00
|
|
|
DQN_MSVC_WARNING_POP
|
2023-10-29 03:59:53 +00:00
|
|
|
#endif
|