#include #include const int WIDTH = 960; const int HEIGHT = 600; const int MAX_FPS = 60; const char* TITLE = "iso3d"; typedef struct GfxAppState { int unused; } GfxAppState; bool Init(GfxApp* app, GfxAppState* state, int argc, const char** argv) { assert(app); assert(state); (void)argc; (void)argv; return true; } void Shutdown(GfxApp* app, GfxAppState* state) { assert(app); assert(state); } void Update(GfxApp* app, GfxAppState* state, double t, double dt) { assert(app); assert(state); (void)t; (void)dt; } void Render(const GfxApp* app, GfxAppState* state) { assert(app); assert(state); } void Resize(GfxApp* app, GfxAppState* state, int width, int height) { assert(app); assert(state); (void)width; (void)height; } GFX_APP_MAIN(WIDTH, HEIGHT, MAX_FPS, TITLE)