diff --git a/build.c b/build.c index 99a78a9..4497f79 100644 --- a/build.c +++ b/build.c @@ -31,8 +31,17 @@ typedef struct Context_Extra { // -// Comment & Uncomment to swap projects +// Comment & Uncomment these to swap projects (only include one at a time) +// -//#include "oogabooga/examples/renderer_stress_test.c" -// #include "oogabooga/examples/minimal_game_loop.c" - #include "entry_randygame.c" \ No newline at end of file +// this is a minimal starting point for new projects. Copy & rename to get started +#include "oogabooga/examples/minimal_game_loop.c" + +// An engine dev stress test for rendering +// #include "oogabooga/examples/renderer_stress_test.c" + +// Randy's example game that he's building out as a tutorial for using the engine +// #include "entry_randygame.c" + +// This is where you swap in your own project! +// #include "entry_yourepicgamename.c" \ No newline at end of file