Cross platform bindings to SDL2. Have fun!
```typescript import { Canvas } from "https://deno.land/x/sdl2/src/canvas.ts";
const canvas = new Canvas({ title: "Hello, Deno!", height: 800, width: 600, centered: true, fullscreen: false, hidden: false, resizable: true, minimized: false, maximized: false, flags: null, });
canvas.setDrawColor(0, 64, 255, 255); canvas.clear(); canvas.present();
for await (const event of canvas) { switch (event.type) { case "draw": // Your game logic // ... break; case "mousemotion": // Mouse stuff break; case "keydown": // Keyboard stuff break; // ... default: break; } } ```
You need:
deno_bindgen
CLI from the
main
branch1.57.0-nightly
)cargo-vcpkg
toolpkg-config
(on *nix) => brew install pkg-config
```bash deno install -Afq -n denobindgen https://deno.land/x/denobindgen/cli.ts cargo install cargo-vcpkg
cargo vcpkg -v build ```
Build using:
bash
deno_bindgen -- --features "use_vcpkg"
deno_sdl2
https://github.com/load1n9/caviar
...insert your project here
MIT