├── .gitignore ├── LICENSE ├── Legion.sln ├── Legion ├── ApexAsset.cpp ├── ApexAsset.h ├── ExportAsset.h ├── ExportManager.cpp ├── ExportManager.h ├── Legion.rc ├── LegionMain.cpp ├── LegionMain.h ├── LegionPreview.cpp ├── LegionPreview.h ├── LegionProgress.cpp ├── LegionProgress.h ├── LegionSettings.cpp ├── LegionSettings.h ├── LegionSplash.cpp ├── LegionSplash.h ├── LegionTitanfallConverter.cpp ├── LegionTitanfallConverter.h ├── Main.cpp ├── MilesLib.cpp ├── MilesLib.h ├── RBspLib.cpp ├── RBspLib.h ├── RpakAssets.h ├── RpakImageTiles.h ├── RpakLib.cpp ├── RpakLib.h ├── VpkLib.cpp ├── VpkLib.h ├── resource.h └── template.manifest └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/LICENSE -------------------------------------------------------------------------------- /Legion.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion.sln -------------------------------------------------------------------------------- /Legion/ApexAsset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/ApexAsset.cpp -------------------------------------------------------------------------------- /Legion/ApexAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/ApexAsset.h -------------------------------------------------------------------------------- /Legion/ExportAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/ExportAsset.h -------------------------------------------------------------------------------- /Legion/ExportManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/ExportManager.cpp -------------------------------------------------------------------------------- /Legion/ExportManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/ExportManager.h -------------------------------------------------------------------------------- /Legion/Legion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/Legion.rc -------------------------------------------------------------------------------- /Legion/LegionMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/LegionMain.cpp -------------------------------------------------------------------------------- /Legion/LegionMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/LegionMain.h -------------------------------------------------------------------------------- /Legion/LegionPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/LegionPreview.cpp -------------------------------------------------------------------------------- /Legion/LegionPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/LegionPreview.h -------------------------------------------------------------------------------- /Legion/LegionProgress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/LegionProgress.cpp -------------------------------------------------------------------------------- /Legion/LegionProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/LegionProgress.h -------------------------------------------------------------------------------- /Legion/LegionSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/LegionSettings.cpp -------------------------------------------------------------------------------- /Legion/LegionSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/LegionSettings.h -------------------------------------------------------------------------------- /Legion/LegionSplash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/LegionSplash.cpp -------------------------------------------------------------------------------- /Legion/LegionSplash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/LegionSplash.h -------------------------------------------------------------------------------- /Legion/LegionTitanfallConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/LegionTitanfallConverter.cpp -------------------------------------------------------------------------------- /Legion/LegionTitanfallConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/LegionTitanfallConverter.h -------------------------------------------------------------------------------- /Legion/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/Main.cpp -------------------------------------------------------------------------------- /Legion/MilesLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/MilesLib.cpp -------------------------------------------------------------------------------- /Legion/MilesLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/MilesLib.h -------------------------------------------------------------------------------- /Legion/RBspLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/RBspLib.cpp -------------------------------------------------------------------------------- /Legion/RBspLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/RBspLib.h -------------------------------------------------------------------------------- /Legion/RpakAssets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/RpakAssets.h -------------------------------------------------------------------------------- /Legion/RpakImageTiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/RpakImageTiles.h -------------------------------------------------------------------------------- /Legion/RpakLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/RpakLib.cpp -------------------------------------------------------------------------------- /Legion/RpakLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/RpakLib.h -------------------------------------------------------------------------------- /Legion/VpkLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/VpkLib.cpp -------------------------------------------------------------------------------- /Legion/VpkLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/VpkLib.h -------------------------------------------------------------------------------- /Legion/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/resource.h -------------------------------------------------------------------------------- /Legion/template.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/Legion/template.manifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtzxporter/Legion/HEAD/README.md --------------------------------------------------------------------------------