o
odinpkg.dev
packages / library / ghosty-2d

ghosty-2d

ab37fcelibrary

No description provided.

No license · updated 2 months ago

2D Ghosty

A 2D game built with Odin and SDL3.

Requirements

  • Odin dev-2026-04 or later
  • SDL3 DLLs (bundled with Odin, see below)

Setup

Copy SDL3 DLLs from your Odin install into the project root (re-run this after any Odin update):

for /r "D:\Odin\vendor\sdl3" %f in (*.dll) do copy /y "%f" "D:\gamedev\odin\2D_ghosty"

Build

D:\Odin\odin.exe build src -out:ghosty.exe

Run (build + launch in one step)

D:\Odin\odin.exe run src