├── .gitattributes ├── .gitignore ├── .gitmodules ├── EternalModLoader.sln ├── EternalModLoader ├── App.config ├── BufferedConsole.cs ├── EternalModLoader.cs ├── EternalModLoader.csproj ├── FastBitConverter.cs ├── KernelWrapper.cs ├── Mods │ ├── Mod.cs │ ├── ModFile.cs │ ├── Resources │ │ ├── AssetsInfo.cs │ │ ├── Blang │ │ │ ├── BlangDecrypt.cs │ │ │ ├── BlangFileEntry.cs │ │ │ └── BlangJson.cs │ │ ├── MapResources │ │ │ ├── MapAsset.cs │ │ │ └── MapResourcesFile.cs │ │ ├── PackageMapSpec.cs │ │ ├── ResourceChunk.cs │ │ ├── ResourceContainer.cs │ │ ├── ResourceData │ │ │ ├── ResourceData.cs │ │ │ └── ResourceDataEntry.cs │ │ ├── ResourceModFile.cs │ │ └── ResourceName.cs │ ├── Sounds │ │ ├── SoundContainer.cs │ │ ├── SoundEncoding.cs │ │ ├── SoundEntry.cs │ │ └── SoundModFile.cs │ └── StreamDB │ │ ├── StreamDBContainer.cs │ │ ├── StreamDBEntry.cs │ │ ├── StreamDBHeader.cs │ │ └── StreamDBModFile.cs ├── OnlineSafety.cs ├── OnlineSafetySWF.cs ├── OodleWrapper.cs ├── Properties │ └── AssemblyInfo.cs ├── Utils.cs ├── Zlib │ ├── ZipEntry.cs │ ├── ZipReader.cs │ ├── Zlib.cs │ └── ZlibWrapper.cs ├── lib │ └── BlangParser.dll └── packages.config └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/.gitmodules -------------------------------------------------------------------------------- /EternalModLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader.sln -------------------------------------------------------------------------------- /EternalModLoader/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/App.config -------------------------------------------------------------------------------- /EternalModLoader/BufferedConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/BufferedConsole.cs -------------------------------------------------------------------------------- /EternalModLoader/EternalModLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/EternalModLoader.cs -------------------------------------------------------------------------------- /EternalModLoader/EternalModLoader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/EternalModLoader.csproj -------------------------------------------------------------------------------- /EternalModLoader/FastBitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/FastBitConverter.cs -------------------------------------------------------------------------------- /EternalModLoader/KernelWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/KernelWrapper.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Mod.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/ModFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/ModFile.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/AssetsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/AssetsInfo.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/Blang/BlangDecrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/Blang/BlangDecrypt.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/Blang/BlangFileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/Blang/BlangFileEntry.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/Blang/BlangJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/Blang/BlangJson.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/MapResources/MapAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/MapResources/MapAsset.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/MapResources/MapResourcesFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/MapResources/MapResourcesFile.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/PackageMapSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/PackageMapSpec.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/ResourceChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/ResourceChunk.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/ResourceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/ResourceContainer.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/ResourceData/ResourceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/ResourceData/ResourceData.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/ResourceData/ResourceDataEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/ResourceData/ResourceDataEntry.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/ResourceModFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/ResourceModFile.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Resources/ResourceName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Resources/ResourceName.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Sounds/SoundContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Sounds/SoundContainer.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Sounds/SoundEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Sounds/SoundEncoding.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Sounds/SoundEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Sounds/SoundEntry.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/Sounds/SoundModFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/Sounds/SoundModFile.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/StreamDB/StreamDBContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/StreamDB/StreamDBContainer.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/StreamDB/StreamDBEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/StreamDB/StreamDBEntry.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/StreamDB/StreamDBHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/StreamDB/StreamDBHeader.cs -------------------------------------------------------------------------------- /EternalModLoader/Mods/StreamDB/StreamDBModFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Mods/StreamDB/StreamDBModFile.cs -------------------------------------------------------------------------------- /EternalModLoader/OnlineSafety.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/OnlineSafety.cs -------------------------------------------------------------------------------- /EternalModLoader/OnlineSafetySWF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/OnlineSafetySWF.cs -------------------------------------------------------------------------------- /EternalModLoader/OodleWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/OodleWrapper.cs -------------------------------------------------------------------------------- /EternalModLoader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EternalModLoader/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Utils.cs -------------------------------------------------------------------------------- /EternalModLoader/Zlib/ZipEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Zlib/ZipEntry.cs -------------------------------------------------------------------------------- /EternalModLoader/Zlib/ZipReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Zlib/ZipReader.cs -------------------------------------------------------------------------------- /EternalModLoader/Zlib/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Zlib/Zlib.cs -------------------------------------------------------------------------------- /EternalModLoader/Zlib/ZlibWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/Zlib/ZlibWrapper.cs -------------------------------------------------------------------------------- /EternalModLoader/lib/BlangParser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/lib/BlangParser.dll -------------------------------------------------------------------------------- /EternalModLoader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/EternalModLoader/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcealopez/EternalModLoader/HEAD/README.md --------------------------------------------------------------------------------