├── .gitattributes ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── 1.4 ├── Assemblies │ ├── FasterGameLoading.dll │ └── System.Drawing.dll └── Source │ ├── .editorconfig │ ├── DelayedActions.cs │ ├── FasterGameLoading.csproj │ ├── FasterGameLoading.sln │ ├── FasterGameLoadingMod.cs │ ├── FasterGameLoadingSettings.cs │ ├── GraphicLoading │ ├── BuildableDef_PostLoad_Patch.cs │ ├── GraphicData_Init_Patch.cs │ ├── Log_Error_Patch.cs │ ├── ModContentLoaderTexture2D_LoadTexture_Patch.cs │ ├── TextureResize.cs │ └── ThingDef_PostLoad_Patch.cs │ ├── Misc │ ├── DisableLogObsoleteMethodPatchErrors.cs │ ├── GlobalTextureAtlasManager_BakeStaticAtlases_Patch.cs │ ├── GlobalTextureAtlasManager_TryInsertStatic_Patch.cs │ ├── StaticConstructorOnStartupUtility_ReportProbablyMissingAttributes_Patch.cs │ └── XMLNode_SelectSingleNodes_Patch.cs │ ├── ModContentPack_ReloadContentInt_Patch.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RedirectHugslibToMainThread.cs │ ├── ReflectionOptimizations │ ├── AccessTools_AllTypes_Patch.cs │ ├── AccessTools_TypeByName_Patch.cs │ ├── GenTypes_AllLeafSubclasses_Patch.cs │ └── GenTypes_GetTypeInAnyAssemblyInt_Patch.cs │ ├── Startup.cs │ └── Utils.cs ├── 1.5 ├── Assemblies │ ├── FasterGameLoading.dll │ └── System.Drawing.dll └── Source │ ├── .editorconfig │ ├── DelayedActions.cs │ ├── FasterGameLoading.csproj │ ├── FasterGameLoading.sln │ ├── FasterGameLoadingMod.cs │ ├── FasterGameLoadingSettings.cs │ ├── GraphicLoading │ ├── BuildableDef_PostLoad_Patch.cs │ ├── GraphicData_Init_Patch.cs │ ├── Log_Error_Patch.cs │ ├── ModContentLoaderTexture2D_LoadTexture_Patch.cs │ ├── TextureResize.cs │ └── ThingDef_PostLoad_Patch.cs │ ├── Misc │ ├── DisableLogObsoleteMethodPatchErrors.cs │ ├── GlobalTextureAtlasManager_BakeStaticAtlases_Patch.cs │ ├── GlobalTextureAtlasManager_TryInsertStatic_Patch.cs │ ├── StaticConstructorOnStartupUtility_ReportProbablyMissingAttributes_Patch.cs │ └── XMLNode_SelectSingleNodes_Patch.cs │ ├── ModContentPack_ReloadContentInt_Patch.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RedirectHugslibToMainThread.cs │ ├── ReflectionOptimizations │ ├── AccessTools_AllTypes_Patch.cs │ ├── AccessTools_TypeByName_Patch.cs │ ├── GenTypes_AllLeafSubclasses_Patch.cs │ └── GenTypes_GetTypeInAnyAssemblyInt_Patch.cs │ ├── Startup.cs │ └── Utils.cs ├── 1.6 ├── Assemblies │ └── FasterGameLoading.dll └── Source │ ├── .editorconfig │ ├── .vscode │ └── tasks.json │ ├── DelayedActions.cs │ ├── FasterGameLoading.csproj │ ├── FasterGameLoading.sln │ ├── FasterGameLoadingMod.cs │ ├── FasterGameLoadingSettings.cs │ ├── GraphicLoading │ ├── BuildableDef_PostLoad_Patch.cs │ ├── GraphicData_Init_Patch.cs │ ├── Log_Error_Patch.cs │ ├── ModContentLoaderTexture2D_LoadTexture_Patch.cs │ ├── TextureResize.cs │ └── ThingDef_PostLoad_Patch.cs │ ├── Misc │ ├── DisableLogObsoleteMethodPatchErrors.cs │ ├── GlobalTextureAtlasManager_BakeStaticAtlases_Patch.cs │ ├── GlobalTextureAtlasManager_TryInsertStatic_Patch.cs │ ├── SoundStarter_Patch.cs │ ├── StaticConstructorOnStartupUtility_ReportProbablyMissingAttributes_Patch.cs │ ├── SubSoundDef_Resolve_Patch.cs │ └── XMLNode_SelectSingleNodes_Patch.cs │ ├── ModContentPack_ReloadContentInt_Patch.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RedirectHugslibToMainThread.cs │ ├── ReflectionOptimizations │ ├── AccessTools_AllTypes_Patch.cs │ ├── AccessTools_TypeByName_Patch.cs │ ├── GenTypes_AllLeafSubclasses_Patch.cs │ └── GenTypes_GetTypeInAnyAssemblyInt_Patch.cs │ ├── Startup.cs │ ├── Utils.cs │ └── World_FinalizeInit_Patch.cs ├── About └── About.xml └── LICENSE /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /1.4/Assemblies/FasterGameLoading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Assemblies/FasterGameLoading.dll -------------------------------------------------------------------------------- /1.4/Assemblies/System.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Assemblies/System.Drawing.dll -------------------------------------------------------------------------------- /1.4/Source/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/.editorconfig -------------------------------------------------------------------------------- /1.4/Source/DelayedActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/DelayedActions.cs -------------------------------------------------------------------------------- /1.4/Source/FasterGameLoading.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/FasterGameLoading.csproj -------------------------------------------------------------------------------- /1.4/Source/FasterGameLoading.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/FasterGameLoading.sln -------------------------------------------------------------------------------- /1.4/Source/FasterGameLoadingMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/FasterGameLoadingMod.cs -------------------------------------------------------------------------------- /1.4/Source/FasterGameLoadingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/FasterGameLoadingSettings.cs -------------------------------------------------------------------------------- /1.4/Source/GraphicLoading/BuildableDef_PostLoad_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/GraphicLoading/BuildableDef_PostLoad_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/GraphicLoading/GraphicData_Init_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/GraphicLoading/GraphicData_Init_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/GraphicLoading/Log_Error_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/GraphicLoading/Log_Error_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/GraphicLoading/ModContentLoaderTexture2D_LoadTexture_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/GraphicLoading/ModContentLoaderTexture2D_LoadTexture_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/GraphicLoading/TextureResize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/GraphicLoading/TextureResize.cs -------------------------------------------------------------------------------- /1.4/Source/GraphicLoading/ThingDef_PostLoad_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/GraphicLoading/ThingDef_PostLoad_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/Misc/DisableLogObsoleteMethodPatchErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/Misc/DisableLogObsoleteMethodPatchErrors.cs -------------------------------------------------------------------------------- /1.4/Source/Misc/GlobalTextureAtlasManager_BakeStaticAtlases_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/Misc/GlobalTextureAtlasManager_BakeStaticAtlases_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/Misc/GlobalTextureAtlasManager_TryInsertStatic_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/Misc/GlobalTextureAtlasManager_TryInsertStatic_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/Misc/StaticConstructorOnStartupUtility_ReportProbablyMissingAttributes_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/Misc/StaticConstructorOnStartupUtility_ReportProbablyMissingAttributes_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/Misc/XMLNode_SelectSingleNodes_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/Misc/XMLNode_SelectSingleNodes_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/ModContentPack_ReloadContentInt_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/ModContentPack_ReloadContentInt_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1.4/Source/RedirectHugslibToMainThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/RedirectHugslibToMainThread.cs -------------------------------------------------------------------------------- /1.4/Source/ReflectionOptimizations/AccessTools_AllTypes_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/ReflectionOptimizations/AccessTools_AllTypes_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/ReflectionOptimizations/AccessTools_TypeByName_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/ReflectionOptimizations/AccessTools_TypeByName_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/ReflectionOptimizations/GenTypes_AllLeafSubclasses_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/ReflectionOptimizations/GenTypes_AllLeafSubclasses_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/ReflectionOptimizations/GenTypes_GetTypeInAnyAssemblyInt_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/ReflectionOptimizations/GenTypes_GetTypeInAnyAssemblyInt_Patch.cs -------------------------------------------------------------------------------- /1.4/Source/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/Startup.cs -------------------------------------------------------------------------------- /1.4/Source/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.4/Source/Utils.cs -------------------------------------------------------------------------------- /1.5/Assemblies/FasterGameLoading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Assemblies/FasterGameLoading.dll -------------------------------------------------------------------------------- /1.5/Assemblies/System.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Assemblies/System.Drawing.dll -------------------------------------------------------------------------------- /1.5/Source/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/.editorconfig -------------------------------------------------------------------------------- /1.5/Source/DelayedActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/DelayedActions.cs -------------------------------------------------------------------------------- /1.5/Source/FasterGameLoading.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/FasterGameLoading.csproj -------------------------------------------------------------------------------- /1.5/Source/FasterGameLoading.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/FasterGameLoading.sln -------------------------------------------------------------------------------- /1.5/Source/FasterGameLoadingMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/FasterGameLoadingMod.cs -------------------------------------------------------------------------------- /1.5/Source/FasterGameLoadingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/FasterGameLoadingSettings.cs -------------------------------------------------------------------------------- /1.5/Source/GraphicLoading/BuildableDef_PostLoad_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/GraphicLoading/BuildableDef_PostLoad_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/GraphicLoading/GraphicData_Init_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/GraphicLoading/GraphicData_Init_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/GraphicLoading/Log_Error_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/GraphicLoading/Log_Error_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/GraphicLoading/ModContentLoaderTexture2D_LoadTexture_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/GraphicLoading/ModContentLoaderTexture2D_LoadTexture_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/GraphicLoading/TextureResize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/GraphicLoading/TextureResize.cs -------------------------------------------------------------------------------- /1.5/Source/GraphicLoading/ThingDef_PostLoad_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/GraphicLoading/ThingDef_PostLoad_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/Misc/DisableLogObsoleteMethodPatchErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/Misc/DisableLogObsoleteMethodPatchErrors.cs -------------------------------------------------------------------------------- /1.5/Source/Misc/GlobalTextureAtlasManager_BakeStaticAtlases_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/Misc/GlobalTextureAtlasManager_BakeStaticAtlases_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/Misc/GlobalTextureAtlasManager_TryInsertStatic_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/Misc/GlobalTextureAtlasManager_TryInsertStatic_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/Misc/StaticConstructorOnStartupUtility_ReportProbablyMissingAttributes_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/Misc/StaticConstructorOnStartupUtility_ReportProbablyMissingAttributes_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/Misc/XMLNode_SelectSingleNodes_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/Misc/XMLNode_SelectSingleNodes_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/ModContentPack_ReloadContentInt_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/ModContentPack_ReloadContentInt_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1.5/Source/RedirectHugslibToMainThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/RedirectHugslibToMainThread.cs -------------------------------------------------------------------------------- /1.5/Source/ReflectionOptimizations/AccessTools_AllTypes_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/ReflectionOptimizations/AccessTools_AllTypes_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/ReflectionOptimizations/AccessTools_TypeByName_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/ReflectionOptimizations/AccessTools_TypeByName_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/ReflectionOptimizations/GenTypes_AllLeafSubclasses_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/ReflectionOptimizations/GenTypes_AllLeafSubclasses_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/ReflectionOptimizations/GenTypes_GetTypeInAnyAssemblyInt_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/ReflectionOptimizations/GenTypes_GetTypeInAnyAssemblyInt_Patch.cs -------------------------------------------------------------------------------- /1.5/Source/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/Startup.cs -------------------------------------------------------------------------------- /1.5/Source/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.5/Source/Utils.cs -------------------------------------------------------------------------------- /1.6/Assemblies/FasterGameLoading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Assemblies/FasterGameLoading.dll -------------------------------------------------------------------------------- /1.6/Source/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/.editorconfig -------------------------------------------------------------------------------- /1.6/Source/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/.vscode/tasks.json -------------------------------------------------------------------------------- /1.6/Source/DelayedActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/DelayedActions.cs -------------------------------------------------------------------------------- /1.6/Source/FasterGameLoading.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/FasterGameLoading.csproj -------------------------------------------------------------------------------- /1.6/Source/FasterGameLoading.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/FasterGameLoading.sln -------------------------------------------------------------------------------- /1.6/Source/FasterGameLoadingMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/FasterGameLoadingMod.cs -------------------------------------------------------------------------------- /1.6/Source/FasterGameLoadingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/FasterGameLoadingSettings.cs -------------------------------------------------------------------------------- /1.6/Source/GraphicLoading/BuildableDef_PostLoad_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/GraphicLoading/BuildableDef_PostLoad_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/GraphicLoading/GraphicData_Init_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/GraphicLoading/GraphicData_Init_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/GraphicLoading/Log_Error_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/GraphicLoading/Log_Error_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/GraphicLoading/ModContentLoaderTexture2D_LoadTexture_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/GraphicLoading/ModContentLoaderTexture2D_LoadTexture_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/GraphicLoading/TextureResize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/GraphicLoading/TextureResize.cs -------------------------------------------------------------------------------- /1.6/Source/GraphicLoading/ThingDef_PostLoad_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/GraphicLoading/ThingDef_PostLoad_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/Misc/DisableLogObsoleteMethodPatchErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/Misc/DisableLogObsoleteMethodPatchErrors.cs -------------------------------------------------------------------------------- /1.6/Source/Misc/GlobalTextureAtlasManager_BakeStaticAtlases_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/Misc/GlobalTextureAtlasManager_BakeStaticAtlases_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/Misc/GlobalTextureAtlasManager_TryInsertStatic_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/Misc/GlobalTextureAtlasManager_TryInsertStatic_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/Misc/SoundStarter_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/Misc/SoundStarter_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/Misc/StaticConstructorOnStartupUtility_ReportProbablyMissingAttributes_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/Misc/StaticConstructorOnStartupUtility_ReportProbablyMissingAttributes_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/Misc/SubSoundDef_Resolve_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/Misc/SubSoundDef_Resolve_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/Misc/XMLNode_SelectSingleNodes_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/Misc/XMLNode_SelectSingleNodes_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/ModContentPack_ReloadContentInt_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/ModContentPack_ReloadContentInt_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1.6/Source/RedirectHugslibToMainThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/RedirectHugslibToMainThread.cs -------------------------------------------------------------------------------- /1.6/Source/ReflectionOptimizations/AccessTools_AllTypes_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/ReflectionOptimizations/AccessTools_AllTypes_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/ReflectionOptimizations/AccessTools_TypeByName_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/ReflectionOptimizations/AccessTools_TypeByName_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/ReflectionOptimizations/GenTypes_AllLeafSubclasses_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/ReflectionOptimizations/GenTypes_AllLeafSubclasses_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/ReflectionOptimizations/GenTypes_GetTypeInAnyAssemblyInt_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/ReflectionOptimizations/GenTypes_GetTypeInAnyAssemblyInt_Patch.cs -------------------------------------------------------------------------------- /1.6/Source/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/Startup.cs -------------------------------------------------------------------------------- /1.6/Source/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/Utils.cs -------------------------------------------------------------------------------- /1.6/Source/World_FinalizeInit_Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/1.6/Source/World_FinalizeInit_Patch.cs -------------------------------------------------------------------------------- /About/About.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/About/About.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taranchuk/FasterGameLoading/HEAD/LICENSE --------------------------------------------------------------------------------