Deno SDL2

Cross platform bindings to SDL2. Have fun!

Features

Example

```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; } } ```

Building from source

You need:

```bash deno install -Afq -n denobindgen https://deno.land/x/denobindgen/cli.ts cargo install cargo-vcpkg

build vcpkg dependencies

cargo vcpkg -v build ```

Build using:

bash deno_bindgen -- --features "use_vcpkg"

Projects using deno_sdl2

License

MIT