├── .gitattributes ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── security-vulerability.md ├── boring-cyborg.yml ├── config.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── conflicts.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Mod Default Installers ├── Installer1 │ ├── Installer.dll │ └── SourceCode.cs └── Installer2 │ ├── Installer.dll │ └── SourceCode.cs ├── README.md ├── RHL Mod Installer ├── RHL Mod Installer API │ ├── Exports.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── RHL Mod Installer API.csproj ├── RHL Mod Installer.sln └── RHL Mod Installer │ ├── Installer.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── RHL Mod Installer.csproj ├── RHL Updater ├── RHL Updater.sln └── RHL Updater │ ├── App.config │ ├── Config.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── RHL Updater.csproj │ ├── RHLTSmall.ico │ └── packages.config ├── ResourceHubLauncher.sln ├── ResourceHubLauncher ├── App.config ├── Config.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Loading.Designer.cs ├── Loading.cs ├── Loading.resx ├── LoadingForm.Designer.cs ├── LoadingForm.cs ├── LoadingForm.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MetroFramework.txt ├── ModButton.cs ├── ModButton.old.cs ├── ModCreatorForm.cs ├── ModCreatorForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RHL Mod Configurator API.dll ├── RHL Mod Installer API.dll ├── RHLTSmall.ico ├── ResourceHubLauncher.csproj ├── Resources │ ├── RHLSmall.png │ ├── RHLTSmall.ico │ ├── RHLTSmall.png │ ├── RHLTransparent.png │ └── RHLauncher.png ├── RichTextHtml.cs ├── Settings.Designer.cs ├── Settings.cs ├── Settings.resx ├── _G.cs └── packages.config ├── SECURITY.md └── Temporary mod configurators ├── BallModv1.0 └── Configurator.dll ├── BreadCrumbs └── Configurator.dll ├── DiscoGoose └── Configurator.dll ├── HatGoos └── Configurator.dll ├── PortalGoos └── Configurator.dll ├── ShaggysNameMod └── Configurator.dll └── ToysModv1.1 └── Configurator.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: sammakesthings 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/security-vulerability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/.github/ISSUE_TEMPLATE/security-vulerability.md -------------------------------------------------------------------------------- /.github/boring-cyborg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/.github/boring-cyborg.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- 1 | todo: 2 | exclude: ".github/ISSUE_TEMPLATE/todo.md" 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/conflicts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/.github/workflows/conflicts.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Mod Default Installers/Installer1/Installer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/Mod Default Installers/Installer1/Installer.dll -------------------------------------------------------------------------------- /Mod Default Installers/Installer1/SourceCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/Mod Default Installers/Installer1/SourceCode.cs -------------------------------------------------------------------------------- /Mod Default Installers/Installer2/Installer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/Mod Default Installers/Installer2/Installer.dll -------------------------------------------------------------------------------- /Mod Default Installers/Installer2/SourceCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/Mod Default Installers/Installer2/SourceCode.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/README.md -------------------------------------------------------------------------------- /RHL Mod Installer/RHL Mod Installer API/Exports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Mod Installer/RHL Mod Installer API/Exports.cs -------------------------------------------------------------------------------- /RHL Mod Installer/RHL Mod Installer API/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Mod Installer/RHL Mod Installer API/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RHL Mod Installer/RHL Mod Installer API/RHL Mod Installer API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Mod Installer/RHL Mod Installer API/RHL Mod Installer API.csproj -------------------------------------------------------------------------------- /RHL Mod Installer/RHL Mod Installer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Mod Installer/RHL Mod Installer.sln -------------------------------------------------------------------------------- /RHL Mod Installer/RHL Mod Installer/Installer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Mod Installer/RHL Mod Installer/Installer.cs -------------------------------------------------------------------------------- /RHL Mod Installer/RHL Mod Installer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Mod Installer/RHL Mod Installer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RHL Mod Installer/RHL Mod Installer/RHL Mod Installer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Mod Installer/RHL Mod Installer/RHL Mod Installer.csproj -------------------------------------------------------------------------------- /RHL Updater/RHL Updater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater.sln -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/App.config -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/Config.cs -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/Form1.Designer.cs -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/Form1.cs -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/Form1.resx -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/Program.cs -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/Properties/Resources.resx -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/Properties/Settings.settings -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/RHL Updater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/RHL Updater.csproj -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/RHLTSmall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/RHLTSmall.ico -------------------------------------------------------------------------------- /RHL Updater/RHL Updater/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/RHL Updater/RHL Updater/packages.config -------------------------------------------------------------------------------- /ResourceHubLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher.sln -------------------------------------------------------------------------------- /ResourceHubLauncher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/App.config -------------------------------------------------------------------------------- /ResourceHubLauncher/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Config.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/FodyWeavers.xml -------------------------------------------------------------------------------- /ResourceHubLauncher/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/FodyWeavers.xsd -------------------------------------------------------------------------------- /ResourceHubLauncher/Loading.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Loading.Designer.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/Loading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Loading.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/Loading.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Loading.resx -------------------------------------------------------------------------------- /ResourceHubLauncher/LoadingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/LoadingForm.Designer.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/LoadingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/LoadingForm.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/LoadingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/LoadingForm.resx -------------------------------------------------------------------------------- /ResourceHubLauncher/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/MainForm.Designer.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/MainForm.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/MainForm.resx -------------------------------------------------------------------------------- /ResourceHubLauncher/MetroFramework.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/MetroFramework.txt -------------------------------------------------------------------------------- /ResourceHubLauncher/ModButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/ModButton.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/ModButton.old.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/ModButton.old.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/ModCreatorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/ModCreatorForm.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/ModCreatorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/ModCreatorForm.resx -------------------------------------------------------------------------------- /ResourceHubLauncher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Program.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Properties/Resources.resx -------------------------------------------------------------------------------- /ResourceHubLauncher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Properties/Settings.settings -------------------------------------------------------------------------------- /ResourceHubLauncher/RHL Mod Configurator API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/RHL Mod Configurator API.dll -------------------------------------------------------------------------------- /ResourceHubLauncher/RHL Mod Installer API.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/RHL Mod Installer API.dll -------------------------------------------------------------------------------- /ResourceHubLauncher/RHLTSmall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/RHLTSmall.ico -------------------------------------------------------------------------------- /ResourceHubLauncher/ResourceHubLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/ResourceHubLauncher.csproj -------------------------------------------------------------------------------- /ResourceHubLauncher/Resources/RHLSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Resources/RHLSmall.png -------------------------------------------------------------------------------- /ResourceHubLauncher/Resources/RHLTSmall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Resources/RHLTSmall.ico -------------------------------------------------------------------------------- /ResourceHubLauncher/Resources/RHLTSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Resources/RHLTSmall.png -------------------------------------------------------------------------------- /ResourceHubLauncher/Resources/RHLTransparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Resources/RHLTransparent.png -------------------------------------------------------------------------------- /ResourceHubLauncher/Resources/RHLauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Resources/RHLauncher.png -------------------------------------------------------------------------------- /ResourceHubLauncher/RichTextHtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/RichTextHtml.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Settings.Designer.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Settings.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/Settings.resx -------------------------------------------------------------------------------- /ResourceHubLauncher/_G.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/_G.cs -------------------------------------------------------------------------------- /ResourceHubLauncher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/ResourceHubLauncher/packages.config -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Temporary mod configurators/BallModv1.0/Configurator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/Temporary mod configurators/BallModv1.0/Configurator.dll -------------------------------------------------------------------------------- /Temporary mod configurators/BreadCrumbs/Configurator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/Temporary mod configurators/BreadCrumbs/Configurator.dll -------------------------------------------------------------------------------- /Temporary mod configurators/DiscoGoose/Configurator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/Temporary mod configurators/DiscoGoose/Configurator.dll -------------------------------------------------------------------------------- /Temporary mod configurators/HatGoos/Configurator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/Temporary mod configurators/HatGoos/Configurator.dll -------------------------------------------------------------------------------- /Temporary mod configurators/PortalGoos/Configurator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/Temporary mod configurators/PortalGoos/Configurator.dll -------------------------------------------------------------------------------- /Temporary mod configurators/ShaggysNameMod/Configurator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/Temporary mod configurators/ShaggysNameMod/Configurator.dll -------------------------------------------------------------------------------- /Temporary mod configurators/ToysModv1.1/Configurator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DesktopGooseUnofficial/launcher/HEAD/Temporary mod configurators/ToysModv1.1/Configurator.dll --------------------------------------------------------------------------------