
- I didn't get rotation going quite right with the xform, but it's 2am goodnight - Smashed my head and had bad thoughts about microsoft many times - stuff - lotsa example code in entry.c
29 lines
No EOL
613 B
C
29 lines
No EOL
613 B
C
|
|
|
|
///
|
|
// Build config stuff
|
|
#define RUN_TESTS 0
|
|
|
|
// This is only for people developing oogabooga!
|
|
#define OOGABOOGA_DEV 1
|
|
|
|
// 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
|
|
|
|
#define ENTRY_PROC start // This is "entry" by default but we're not like all the other girls so we call it start
|
|
|
|
#include "oogabooga/oogabooga.c"
|
|
|
|
|
|
// Includes for game goes here
|
|
// ...
|
|
|
|
#include "entry.c" |