#include "raylib.h" #ifdef PLATFORM_WEB #include #endif void Loop(); int main() { InitWindow(800, 600, "bullethell2022"); #ifdef PLATFORM_WEB emscripten_set_main_loop(Loop, 0, 1); #else SetTargetFPS(60); while (!WindowShouldClose()) { Loop(); } #endif // PLATFORM_WEB CloseWindow(); } void Loop() { BeginDrawing(); ClearBackground(RAYWHITE); DrawText("bullethell2022", 190, 200, 20, LIGHTGRAY); EndDrawing(); }