├── .vscode └── launch.json ├── example ├── assets │ ├── example.ldtk │ └── gfx │ │ ├── darknightbg.aseprite │ │ ├── darknightbg.png │ │ ├── tileset.aseprite │ │ ├── tileset.png │ │ ├── tileset2.aseprite │ │ └── tileset2.png ├── go.mod ├── go.sum └── main.go ├── go.mod ├── go.sum ├── ldtkgo.go ├── license.md ├── readme.md └── renderer └── ebitengine └── ebitengine.go /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /example/assets/example.ldtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/example/assets/example.ldtk -------------------------------------------------------------------------------- /example/assets/gfx/darknightbg.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/example/assets/gfx/darknightbg.aseprite -------------------------------------------------------------------------------- /example/assets/gfx/darknightbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/example/assets/gfx/darknightbg.png -------------------------------------------------------------------------------- /example/assets/gfx/tileset.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/example/assets/gfx/tileset.aseprite -------------------------------------------------------------------------------- /example/assets/gfx/tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/example/assets/gfx/tileset.png -------------------------------------------------------------------------------- /example/assets/gfx/tileset2.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/example/assets/gfx/tileset2.aseprite -------------------------------------------------------------------------------- /example/assets/gfx/tileset2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/example/assets/gfx/tileset2.png -------------------------------------------------------------------------------- /example/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/example/go.mod -------------------------------------------------------------------------------- /example/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/example/go.sum -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/example/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/go.sum -------------------------------------------------------------------------------- /ldtkgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/ldtkgo.go -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/license.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/readme.md -------------------------------------------------------------------------------- /renderer/ebitengine/ebitengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolarLune/ldtkgo/HEAD/renderer/ebitengine/ebitengine.go --------------------------------------------------------------------------------