├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets └── images │ ├── logoMini_big.png │ ├── logoMini_normal.png │ ├── logoMini_small.png │ ├── logo_big.png │ ├── logo_normal.png │ ├── logo_small.png │ └── promo.png ├── docs ├── doc_create.md ├── doc_customize.md ├── doc_setup.md └── images │ ├── create.png │ ├── customize.png │ └── setup.png ├── flixel ├── system │ ├── FlxBaseMetadataFormat.hx │ ├── FlxBaseModpack.hx │ ├── FlxMetadataFormat.hx │ ├── FlxModding.hx │ ├── FlxModpack.hx │ ├── assetSystem │ │ ├── FlxAssetSystem.hx │ │ └── IAssetSystem.hx │ ├── fileSystem │ │ ├── IFileSystem.hx │ │ ├── RamFileSystem.hx │ │ ├── SysFileSystem.hx │ │ └── WebFileSystem.hx │ └── polymod │ │ ├── PolymodMetadataFormat.hx │ │ └── PolymodModpack.hx └── util │ ├── FlxModUtil.hx │ └── FlxScriptUtil.hx └── haxelib.json /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/logoMini_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/assets/images/logoMini_big.png -------------------------------------------------------------------------------- /assets/images/logoMini_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/assets/images/logoMini_normal.png -------------------------------------------------------------------------------- /assets/images/logoMini_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/assets/images/logoMini_small.png -------------------------------------------------------------------------------- /assets/images/logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/assets/images/logo_big.png -------------------------------------------------------------------------------- /assets/images/logo_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/assets/images/logo_normal.png -------------------------------------------------------------------------------- /assets/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/assets/images/logo_small.png -------------------------------------------------------------------------------- /assets/images/promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/assets/images/promo.png -------------------------------------------------------------------------------- /docs/doc_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/docs/doc_create.md -------------------------------------------------------------------------------- /docs/doc_customize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/docs/doc_customize.md -------------------------------------------------------------------------------- /docs/doc_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/docs/doc_setup.md -------------------------------------------------------------------------------- /docs/images/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/docs/images/create.png -------------------------------------------------------------------------------- /docs/images/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/docs/images/customize.png -------------------------------------------------------------------------------- /docs/images/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/docs/images/setup.png -------------------------------------------------------------------------------- /flixel/system/FlxBaseMetadataFormat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/FlxBaseMetadataFormat.hx -------------------------------------------------------------------------------- /flixel/system/FlxBaseModpack.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/FlxBaseModpack.hx -------------------------------------------------------------------------------- /flixel/system/FlxMetadataFormat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/FlxMetadataFormat.hx -------------------------------------------------------------------------------- /flixel/system/FlxModding.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/FlxModding.hx -------------------------------------------------------------------------------- /flixel/system/FlxModpack.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/FlxModpack.hx -------------------------------------------------------------------------------- /flixel/system/assetSystem/FlxAssetSystem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/assetSystem/FlxAssetSystem.hx -------------------------------------------------------------------------------- /flixel/system/assetSystem/IAssetSystem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/assetSystem/IAssetSystem.hx -------------------------------------------------------------------------------- /flixel/system/fileSystem/IFileSystem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/fileSystem/IFileSystem.hx -------------------------------------------------------------------------------- /flixel/system/fileSystem/RamFileSystem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/fileSystem/RamFileSystem.hx -------------------------------------------------------------------------------- /flixel/system/fileSystem/SysFileSystem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/fileSystem/SysFileSystem.hx -------------------------------------------------------------------------------- /flixel/system/fileSystem/WebFileSystem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/fileSystem/WebFileSystem.hx -------------------------------------------------------------------------------- /flixel/system/polymod/PolymodMetadataFormat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/polymod/PolymodMetadataFormat.hx -------------------------------------------------------------------------------- /flixel/system/polymod/PolymodModpack.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/system/polymod/PolymodModpack.hx -------------------------------------------------------------------------------- /flixel/util/FlxModUtil.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/util/FlxModUtil.hx -------------------------------------------------------------------------------- /flixel/util/FlxScriptUtil.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/flixel/util/FlxScriptUtil.hx -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaFinn/flixel-modding/HEAD/haxelib.json --------------------------------------------------------------------------------