23 lines
892 B
C
23 lines
892 B
C
// NOTE: feely_pona ================================================================================
|
|
// Unity build header to compile the entire application as a single translation unit
|
|
|
|
#define TELY_PLATFORM_DLL_FILE_NAME "terry_cherry_dev_dll"
|
|
#include "External/tely/tely_os_raylib_unity.h"
|
|
|
|
// NOTE: feely_pona ================================================================================
|
|
#if defined(_CLANGD) || defined(FEELY_PONA_IMPLEMENTATION)
|
|
DQN_MSVC_WARNING_PUSH
|
|
DQN_MSVC_WARNING_DISABLE(4505) // warning C4505: unreferenced function with internal linkage has been removed
|
|
#include "feely_pona.h"
|
|
#include "feely_pona_stdlib.h"
|
|
#include "feely_pona_entity.h"
|
|
#include "feely_pona_game.h"
|
|
|
|
#include "feely_pona_entity.cpp"
|
|
#include "feely_pona_game.cpp"
|
|
#include "feely_pona_entity_create.cpp"
|
|
#include "feely_pona_misc.cpp"
|
|
#include "feely_pona.cpp"
|
|
DQN_MSVC_WARNING_POP
|
|
#endif
|