UNPKG

raylib-wasm

Version:

Make raylib games in JS for the web

10 lines (9 loc) 218 B
const InitGame = async () => { InitWindow(400, 250) } const UpdateGame = (ts) => { BeginDrawing() ClearBackground(RAYWHITE) DrawText("Sorry, this demo is not ported, yet.", 15, 110, 20, BLACK) EndDrawing() }