This repository has been archived on 2025-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
helpless/build.c

31 lines
614 B
C
Raw Normal View History

///
// Build config stuff
#define RUN_TESTS 0
// This is only for people developing oogabooga!
#define OOGABOOGA_DEV 1
#define ENABLE_PROFILING 0
// When we need very debug
// #define CONFIGURATION VERY_DEBUG
typedef struct Context_Extra {
int monkee;
} Context_Extra;
// This needs to be defined before oogabooga if we want extra stuff in context
#define CONTEXT_EXTRA Context_Extra
#define GFX_RENDERER GFX_RENDERER_D3D11
#include "oogabooga/oogabooga.c"
2024-07-02 12:48:28 +07:00
//
// Comment & Uncomment to swap projects
// #include "entry_engine_test.c"
2024-07-02 12:48:28 +07:00
// #include "entry_minimal_example.c"
#include "entry_randygame.c"