├── .gitignore ├── LICENSE ├── README.md ├── Sources └── aseprite │ ├── Aseprite.hx │ ├── Parser.hx │ └── Reader.hx └── haxelib.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/haxe-aseprite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/haxe-aseprite/HEAD/README.md -------------------------------------------------------------------------------- /Sources/aseprite/Aseprite.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/haxe-aseprite/HEAD/Sources/aseprite/Aseprite.hx -------------------------------------------------------------------------------- /Sources/aseprite/Parser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/haxe-aseprite/HEAD/Sources/aseprite/Parser.hx -------------------------------------------------------------------------------- /Sources/aseprite/Reader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/haxe-aseprite/HEAD/Sources/aseprite/Reader.hx -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PongoEngine/haxe-aseprite/HEAD/haxelib.json --------------------------------------------------------------------------------