├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── haxelib.json ├── hxformat.json ├── hxpkg.sh └── hxpkg ├── Main.hx ├── PKGFile.hx └── Util.hx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCobaltDev/HxPKG/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .haxelib 2 | .hxpkg -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCobaltDev/HxPKG/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCobaltDev/HxPKG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCobaltDev/HxPKG/HEAD/README.md -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCobaltDev/HxPKG/HEAD/haxelib.json -------------------------------------------------------------------------------- /hxformat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCobaltDev/HxPKG/HEAD/hxformat.json -------------------------------------------------------------------------------- /hxpkg.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | haxelib --global run hxpkg "$@" -------------------------------------------------------------------------------- /hxpkg/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCobaltDev/HxPKG/HEAD/hxpkg/Main.hx -------------------------------------------------------------------------------- /hxpkg/PKGFile.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCobaltDev/HxPKG/HEAD/hxpkg/PKGFile.hx -------------------------------------------------------------------------------- /hxpkg/Util.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCobaltDev/HxPKG/HEAD/hxpkg/Util.hx --------------------------------------------------------------------------------