14 lines
275 B
C
14 lines
275 B
C
#include <breeze.h>
|
|
|
|
#include <raylib.h>
|
|
|
|
void render(float dt, int *game) {
|
|
ClearBackground(WHITE);
|
|
BeginDrawing();
|
|
EndDrawing();
|
|
}
|
|
|
|
bool bzMain(BzAppDesc *appDesc, int argc, const char **argv) {
|
|
appDesc->render = (BzAppRenderFunc) render;
|
|
return true;
|
|
} |