├── .gitattributes ├── .github └── issue_label_bot.yaml ├── .gitignore ├── Custom SDK Launcher.sln ├── Distroir.CustomSDKLauncher.Core.Data ├── Data.Designer.cs ├── Data.resx ├── Distroir.CustomSDKLauncher.Core.Data.csproj ├── Properties │ └── AssemblyInfo.cs └── Resources │ ├── AppIcon.ico │ ├── ContentGroups.xml │ ├── HelpTopics.xml │ ├── Icons │ └── App │ │ ├── DefaultIcon.png │ │ └── SDK │ │ ├── FacePoserIcon.png │ │ ├── HammerIcon.png │ │ └── ModelViewerIcon.png │ ├── Templates.xml │ ├── Tutorials.xml │ └── UIThemes.xml ├── Distroir.CustomSDKLauncher.Core ├── Backups │ ├── BackupEntry.cs │ └── BackupManager.cs ├── CommunityContent │ ├── ContentData.cs │ ├── ContentGroup.cs │ ├── ContentInfo.cs │ ├── ContentManager.cs │ └── ImageData.cs ├── Config.cs ├── Distroir.CustomSDKLauncher.Core.csproj ├── Feedback │ ├── FeedbackFetcher.cs │ └── Scheduler.cs ├── Game.cs ├── Launcher.cs ├── Launchers │ ├── AppConfigurator.cs │ ├── Customizable │ │ ├── AppDependentDisplayableItem.cs │ │ ├── AppLauncher │ │ │ ├── AppInfo.cs │ │ │ ├── AppTemplate.cs │ │ │ ├── Controls │ │ │ │ ├── IconSelector.Designer.cs │ │ │ │ ├── IconSelector.cs │ │ │ │ └── IconSelector.resx │ │ │ ├── Dialogs │ │ │ │ ├── AppSelectorDialog.Designer.cs │ │ │ │ ├── AppSelectorDialog.cs │ │ │ │ ├── AppSelectorDialog.resx │ │ │ │ ├── BasicAppConfigurationDialog.Designer.cs │ │ │ │ ├── BasicAppConfigurationDialog.cs │ │ │ │ ├── BasicAppConfigurationDialog.resx │ │ │ │ ├── CustomAppConfigurationDialog.Designer.cs │ │ │ │ ├── CustomAppConfigurationDialog.cs │ │ │ │ ├── CustomAppConfigurationDialog.resx │ │ │ │ ├── JavaAppConfigurationDialog.Designer.cs │ │ │ │ ├── JavaAppConfigurationDialog.cs │ │ │ │ ├── JavaAppConfigurationDialog.resx │ │ │ │ ├── SteamAppConfigurationDialog.Designer.cs │ │ │ │ ├── SteamAppConfigurationDialog.cs │ │ │ │ └── SteamAppConfigurationDialog.resx │ │ │ ├── Factories │ │ │ │ ├── Basic │ │ │ │ │ └── SdkApplication.cs │ │ │ │ ├── BasicAppFactory.cs │ │ │ │ ├── CustomAppFactory.cs │ │ │ │ ├── IAppInfoFactory.cs │ │ │ │ ├── Java │ │ │ │ │ └── JavaApplication.cs │ │ │ │ ├── JavaAppFactory.cs │ │ │ │ └── SteamAppFactory.cs │ │ │ └── Templates │ │ │ │ ├── BasicAppTemplate.cs │ │ │ │ ├── CustomAppTemplate.cs │ │ │ │ ├── Java │ │ │ │ └── PathFinders │ │ │ │ │ ├── CustomJavaPathFinder.cs │ │ │ │ │ ├── IJavaPathFinder.cs │ │ │ │ │ ├── PathJavaPathFinder.cs │ │ │ │ │ └── RegistryJavaPathFinder.cs │ │ │ │ ├── JavaAppTemplate.cs │ │ │ │ └── SteamAppTemplate.cs │ │ ├── CustomizableApp.cs │ │ └── CustomizableLauncher.cs │ ├── Editable │ │ ├── EditableLauncher.cs │ │ ├── ProducibleApp.cs │ │ └── ProducibleDisplayableItem.cs │ ├── IApp.cs │ ├── IConfigurableApp.cs │ ├── IDisplayableItem.cs │ ├── Launcher.cs │ └── Standard │ │ ├── StandardApp.cs │ │ ├── StandardDisplayableItem.cs │ │ ├── StandardLauncher.cs │ │ └── StandardSdkApplication.cs ├── Managers │ ├── Async │ │ └── AsyncManager.cs │ ├── ContentSerializers │ │ ├── BinaryFileContentSerializer.cs │ │ ├── BinaryStringContentSerializer.cs │ │ ├── ContentSerializer.cs │ │ ├── Json │ │ │ └── JsonImageConverter.cs │ │ ├── JsonFileContentSerializer.cs │ │ ├── XmlFileContentSerializer.cs │ │ └── XmlStringContentSerializer.cs │ ├── ConvertableManager.cs │ ├── Converters │ │ ├── AppInfoFactoryToAppConverter.cs │ │ ├── AppTemplateToAppConverter.cs │ │ └── IConverter.cs │ ├── DataManagers.cs │ ├── IManager.cs │ ├── Manager.cs │ └── Serializers │ │ ├── ISerializer.cs │ │ └── XmlStringSerializer.cs ├── Migrators │ ├── GameMigrator.cs │ ├── Games │ │ ├── GameCache.cs │ │ ├── GameMigrationConflictDialog.Designer.cs │ │ ├── GameMigrationConflictDialog.cs │ │ ├── GameMigrationConflictDialog.resx │ │ ├── GameMigrationConflictSolution.cs │ │ └── GameToProfileConverter.cs │ ├── IMigrator.cs │ └── LauncherMigrator.cs ├── Properties │ └── AssemblyInfo.cs ├── Steam │ ├── AppManifestReader.cs │ ├── LibraryFileReader.cs │ └── SteamGameFinder.cs ├── Template.cs ├── Tutorial.cs ├── Utilities │ ├── AppUtils.cs │ ├── AsyncLock.cs │ ├── BitmapComparer.cs │ ├── Checker │ │ ├── DirectoryValidator.cs │ │ ├── EmptyValueValidator.cs │ │ ├── GameChecker.cs │ │ ├── IValidator.cs │ │ └── ToolValidator.cs │ ├── DateSerializer.cs │ ├── ExceptionLogger.cs │ ├── IconProvider.cs │ ├── Icons │ │ └── IconHelper.cs │ ├── JavaUtils.cs │ ├── MessageBoxes.cs │ ├── PathFormatter.cs │ ├── PlatformChecker.cs │ ├── RegistryUtils.cs │ └── SerializableImage.cs ├── Utils.cs └── packages.config ├── Distroir.CustomSDKLauncher.Shared ├── Core │ └── HelpTopic.cs ├── Distroir.CustomSDKLauncher.Shared.csproj ├── Properties │ └── AssemblyInfo.cs └── UI │ ├── HelpDialog.Designer.cs │ ├── HelpDialog.cs │ └── HelpDialog.resx ├── Distroir.CustomSDKLauncher.UI ├── Dialogs │ ├── ChooseTemplateDialog.Designer.cs │ ├── ChooseTemplateDialog.cs │ ├── ChooseTemplateDialog.resx │ ├── CommunityContentBrowserDialog.Designer.cs │ ├── CommunityContentBrowserDialog.cs │ ├── CommunityContentBrowserDialog.resx │ ├── EditGameDialog.Designer.cs │ ├── EditGameDialog.cs │ ├── EditGameDialog.resx │ ├── FirstLaunchDialog.Designer.cs │ ├── FirstLaunchDialog.cs │ ├── FirstLaunchDialog.resx │ ├── GameListEditDialog.Designer.cs │ ├── GameListEditDialog.cs │ ├── GameListEditDialog.resx │ ├── GamesToKeepDialog.Designer.cs │ ├── GamesToKeepDialog.cs │ ├── GamesToKeepDialog.resx │ ├── LicenseDialog.Designer.cs │ ├── LicenseDialog.cs │ ├── LicenseDialog.resx │ ├── ResetSettingsDialog.Designer.cs │ ├── ResetSettingsDialog.cs │ ├── ResetSettingsDialog.resx │ ├── SettingsDialog.Designer.cs │ ├── SettingsDialog.cs │ ├── SettingsDialog.resx │ ├── SetupFirstGameDialog.Designer.cs │ ├── SetupFirstGameDialog.cs │ ├── SetupFirstGameDialog.resx │ ├── ThirdPartyLicensesDialog.Designer.cs │ ├── ThirdPartyLicensesDialog.cs │ ├── ThirdPartyLicensesDialog.resx │ ├── TutorialsDialog.Designer.cs │ ├── TutorialsDialog.cs │ └── TutorialsDialog.resx ├── Distroir.CustomSDKLauncher.UI.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── FUGUE-README.txt │ ├── Gameloop.Vdf.txt │ ├── License (Only custom sdk launcher).txt │ ├── Licenses.Designer.cs │ ├── Licenses.resx │ ├── Newtonsoft_Json.txt │ ├── System_ValueTuple.txt │ ├── appicon.png │ ├── arrow-090.png │ ├── arrow-270.png │ ├── arrow-skip-090.png │ ├── arrow-skip-270.png │ ├── document-copy.png │ ├── magnifier--plus.png │ ├── minus.png │ ├── notebook--minus.png │ ├── notebook--plus.png │ ├── pencil.png │ ├── plus.png │ ├── source.png │ └── thw.jpg └── packages.config ├── Distroir.CustomSDKLauncher ├── Distroir.Custom SDK Launcher.licenseheader ├── Distroir.CustomSDKLauncher.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── launcher.ico ├── Installer ├── .gitignore ├── FUGUE-README.txt ├── License.txt ├── Setup.ps1 ├── gpl3.txt └── setup.iss ├── LICENSE ├── README.md └── UnitTests ├── Distroir └── CustomSDKLauncher │ └── Core │ ├── Launchers │ └── Customizable │ │ └── AppLauncher │ │ └── Templates │ │ ├── BasicAppTemplateTests.cs │ │ ├── CustomAppTemplateTests.cs │ │ ├── Java │ │ └── PathFinders │ │ │ └── PathJavaPathFinderTests.cs │ │ ├── JavaAppTemplateTests.cs │ │ ├── SteamAppTemplateTests.cs │ │ └── TemplateSerializationTests.cs │ └── Utilities │ └── BitmapComparerTests.cs ├── Properties └── AssemblyInfo.cs ├── UnitTests.csproj └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/issue_label_bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/.github/issue_label_bot.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /Custom SDK Launcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Custom SDK Launcher.sln -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Data.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Data.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Data.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Data.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Distroir.CustomSDKLauncher.Core.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Distroir.CustomSDKLauncher.Core.Data.csproj -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Resources/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Resources/AppIcon.ico -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Resources/ContentGroups.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Resources/ContentGroups.xml -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Resources/HelpTopics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Resources/HelpTopics.xml -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Resources/Icons/App/DefaultIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Resources/Icons/App/DefaultIcon.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Resources/Icons/App/SDK/FacePoserIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Resources/Icons/App/SDK/FacePoserIcon.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Resources/Icons/App/SDK/HammerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Resources/Icons/App/SDK/HammerIcon.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Resources/Icons/App/SDK/ModelViewerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Resources/Icons/App/SDK/ModelViewerIcon.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Resources/Templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Resources/Templates.xml -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Resources/Tutorials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Resources/Tutorials.xml -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core.Data/Resources/UIThemes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core.Data/Resources/UIThemes.xml -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Backups/BackupEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Backups/BackupEntry.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Backups/BackupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Backups/BackupManager.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/CommunityContent/ContentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/CommunityContent/ContentData.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/CommunityContent/ContentGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/CommunityContent/ContentGroup.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/CommunityContent/ContentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/CommunityContent/ContentInfo.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/CommunityContent/ContentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/CommunityContent/ContentManager.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/CommunityContent/ImageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/CommunityContent/ImageData.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Config.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Distroir.CustomSDKLauncher.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Distroir.CustomSDKLauncher.Core.csproj -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Feedback/FeedbackFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Feedback/FeedbackFetcher.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Feedback/Scheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Feedback/Scheduler.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Game.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launcher.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/AppConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/AppConfigurator.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppDependentDisplayableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppDependentDisplayableItem.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/AppInfo.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/AppTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/AppTemplate.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Controls/IconSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Controls/IconSelector.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Controls/IconSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Controls/IconSelector.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Controls/IconSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Controls/IconSelector.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/AppSelectorDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/AppSelectorDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/AppSelectorDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/AppSelectorDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/AppSelectorDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/AppSelectorDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/BasicAppConfigurationDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/BasicAppConfigurationDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/BasicAppConfigurationDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/BasicAppConfigurationDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/BasicAppConfigurationDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/BasicAppConfigurationDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/CustomAppConfigurationDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/CustomAppConfigurationDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/CustomAppConfigurationDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/CustomAppConfigurationDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/CustomAppConfigurationDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/CustomAppConfigurationDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/JavaAppConfigurationDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/JavaAppConfigurationDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/JavaAppConfigurationDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/JavaAppConfigurationDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/JavaAppConfigurationDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/JavaAppConfigurationDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/SteamAppConfigurationDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/SteamAppConfigurationDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/SteamAppConfigurationDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/SteamAppConfigurationDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/SteamAppConfigurationDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Dialogs/SteamAppConfigurationDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/Basic/SdkApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/Basic/SdkApplication.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/BasicAppFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/BasicAppFactory.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/CustomAppFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/CustomAppFactory.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/IAppInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/IAppInfoFactory.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/Java/JavaApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/Java/JavaApplication.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/JavaAppFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/JavaAppFactory.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/SteamAppFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Factories/SteamAppFactory.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/BasicAppTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/BasicAppTemplate.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/CustomAppTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/CustomAppTemplate.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/Java/PathFinders/CustomJavaPathFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/Java/PathFinders/CustomJavaPathFinder.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/Java/PathFinders/IJavaPathFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/Java/PathFinders/IJavaPathFinder.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/Java/PathFinders/PathJavaPathFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/Java/PathFinders/PathJavaPathFinder.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/Java/PathFinders/RegistryJavaPathFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/Java/PathFinders/RegistryJavaPathFinder.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/JavaAppTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/JavaAppTemplate.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/SteamAppTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/AppLauncher/Templates/SteamAppTemplate.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/CustomizableApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/CustomizableApp.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Customizable/CustomizableLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Customizable/CustomizableLauncher.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Editable/EditableLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Editable/EditableLauncher.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Editable/ProducibleApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Editable/ProducibleApp.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Editable/ProducibleDisplayableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Editable/ProducibleDisplayableItem.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/IApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/IApp.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/IConfigurableApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/IConfigurableApp.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/IDisplayableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/IDisplayableItem.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Launcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Launcher.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Standard/StandardApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Standard/StandardApp.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Standard/StandardDisplayableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Standard/StandardDisplayableItem.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Standard/StandardLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Standard/StandardLauncher.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Launchers/Standard/StandardSdkApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Launchers/Standard/StandardSdkApplication.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/Async/AsyncManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/Async/AsyncManager.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/BinaryFileContentSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/BinaryFileContentSerializer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/BinaryStringContentSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/BinaryStringContentSerializer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/ContentSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/ContentSerializer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/Json/JsonImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/Json/JsonImageConverter.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/JsonFileContentSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/JsonFileContentSerializer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/XmlFileContentSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/XmlFileContentSerializer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/XmlStringContentSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/ContentSerializers/XmlStringContentSerializer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/ConvertableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/ConvertableManager.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/Converters/AppInfoFactoryToAppConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/Converters/AppInfoFactoryToAppConverter.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/Converters/AppTemplateToAppConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/Converters/AppTemplateToAppConverter.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/Converters/IConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/Converters/IConverter.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/DataManagers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/DataManagers.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/IManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/IManager.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/Manager.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/Serializers/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/Serializers/ISerializer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Managers/Serializers/XmlStringSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Managers/Serializers/XmlStringSerializer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Migrators/GameMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Migrators/GameMigrator.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Migrators/Games/GameCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Migrators/Games/GameCache.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Migrators/Games/GameMigrationConflictDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Migrators/Games/GameMigrationConflictDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Migrators/Games/GameMigrationConflictDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Migrators/Games/GameMigrationConflictDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Migrators/Games/GameMigrationConflictDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Migrators/Games/GameMigrationConflictDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Migrators/Games/GameMigrationConflictSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Migrators/Games/GameMigrationConflictSolution.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Migrators/Games/GameToProfileConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Migrators/Games/GameToProfileConverter.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Migrators/IMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Migrators/IMigrator.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Migrators/LauncherMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Migrators/LauncherMigrator.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Steam/AppManifestReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Steam/AppManifestReader.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Steam/LibraryFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Steam/LibraryFileReader.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Steam/SteamGameFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Steam/SteamGameFinder.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Template.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Tutorial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Tutorial.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/AppUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/AppUtils.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/AsyncLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/AsyncLock.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/BitmapComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/BitmapComparer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/Checker/DirectoryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/Checker/DirectoryValidator.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/Checker/EmptyValueValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/Checker/EmptyValueValidator.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/Checker/GameChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/Checker/GameChecker.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/Checker/IValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/Checker/IValidator.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/Checker/ToolValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/Checker/ToolValidator.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/DateSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/DateSerializer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/ExceptionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/ExceptionLogger.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/IconProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/IconProvider.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/Icons/IconHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/Icons/IconHelper.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/JavaUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/JavaUtils.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/MessageBoxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/MessageBoxes.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/PathFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/PathFormatter.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/PlatformChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/PlatformChecker.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/RegistryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/RegistryUtils.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utilities/SerializableImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utilities/SerializableImage.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/Utils.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Core/packages.config -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Shared/Core/HelpTopic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Shared/Core/HelpTopic.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Shared/Distroir.CustomSDKLauncher.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Shared/Distroir.CustomSDKLauncher.Shared.csproj -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Shared/UI/HelpDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Shared/UI/HelpDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Shared/UI/HelpDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Shared/UI/HelpDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.Shared/UI/HelpDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.Shared/UI/HelpDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/ChooseTemplateDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/ChooseTemplateDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/ChooseTemplateDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/ChooseTemplateDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/ChooseTemplateDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/ChooseTemplateDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/CommunityContentBrowserDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/CommunityContentBrowserDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/CommunityContentBrowserDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/CommunityContentBrowserDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/CommunityContentBrowserDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/CommunityContentBrowserDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/EditGameDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/EditGameDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/EditGameDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/EditGameDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/EditGameDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/EditGameDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/FirstLaunchDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/FirstLaunchDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/FirstLaunchDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/FirstLaunchDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/FirstLaunchDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/FirstLaunchDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/GameListEditDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/GameListEditDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/GameListEditDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/GameListEditDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/GameListEditDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/GameListEditDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/GamesToKeepDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/GamesToKeepDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/GamesToKeepDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/GamesToKeepDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/GamesToKeepDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/GamesToKeepDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/LicenseDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/LicenseDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/LicenseDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/LicenseDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/LicenseDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/LicenseDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/ResetSettingsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/ResetSettingsDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/ResetSettingsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/ResetSettingsDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/ResetSettingsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/ResetSettingsDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/SettingsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/SettingsDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/SettingsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/SettingsDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/SettingsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/SettingsDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/SetupFirstGameDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/SetupFirstGameDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/SetupFirstGameDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/SetupFirstGameDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/SetupFirstGameDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/SetupFirstGameDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/ThirdPartyLicensesDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/ThirdPartyLicensesDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/ThirdPartyLicensesDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/ThirdPartyLicensesDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/ThirdPartyLicensesDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/ThirdPartyLicensesDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/TutorialsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/TutorialsDialog.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/TutorialsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/TutorialsDialog.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Dialogs/TutorialsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Dialogs/TutorialsDialog.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Distroir.CustomSDKLauncher.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Distroir.CustomSDKLauncher.UI.csproj -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Form1.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Form1.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Form1.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Properties/Resources.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/FUGUE-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/FUGUE-README.txt -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/Gameloop.Vdf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/Gameloop.Vdf.txt -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/License (Only custom sdk launcher).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/License (Only custom sdk launcher).txt -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/Licenses.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/Licenses.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/Licenses.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/Licenses.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/Newtonsoft_Json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/Newtonsoft_Json.txt -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/System_ValueTuple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/System_ValueTuple.txt -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/appicon.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/arrow-090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/arrow-090.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/arrow-270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/arrow-270.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/arrow-skip-090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/arrow-skip-090.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/arrow-skip-270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/arrow-skip-270.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/document-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/document-copy.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/magnifier--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/magnifier--plus.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/minus.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/notebook--minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/notebook--minus.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/notebook--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/notebook--plus.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/pencil.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/plus.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/source.png -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/Resources/thw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/Resources/thw.jpg -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher.UI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher.UI/packages.config -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher/Distroir.Custom SDK Launcher.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher/Distroir.Custom SDK Launcher.licenseheader -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher/Distroir.CustomSDKLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher/Distroir.CustomSDKLauncher.csproj -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher/Program.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher/Properties/Resources.resx -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher/Properties/Settings.settings -------------------------------------------------------------------------------- /Distroir.CustomSDKLauncher/launcher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Distroir.CustomSDKLauncher/launcher.ico -------------------------------------------------------------------------------- /Installer/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | Out -------------------------------------------------------------------------------- /Installer/FUGUE-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Installer/FUGUE-README.txt -------------------------------------------------------------------------------- /Installer/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Installer/License.txt -------------------------------------------------------------------------------- /Installer/Setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Installer/Setup.ps1 -------------------------------------------------------------------------------- /Installer/gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Installer/gpl3.txt -------------------------------------------------------------------------------- /Installer/setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/Installer/setup.iss -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/README.md -------------------------------------------------------------------------------- /UnitTests/Distroir/CustomSDKLauncher/Core/Launchers/Customizable/AppLauncher/Templates/BasicAppTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/UnitTests/Distroir/CustomSDKLauncher/Core/Launchers/Customizable/AppLauncher/Templates/BasicAppTemplateTests.cs -------------------------------------------------------------------------------- /UnitTests/Distroir/CustomSDKLauncher/Core/Launchers/Customizable/AppLauncher/Templates/CustomAppTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/UnitTests/Distroir/CustomSDKLauncher/Core/Launchers/Customizable/AppLauncher/Templates/CustomAppTemplateTests.cs -------------------------------------------------------------------------------- /UnitTests/Distroir/CustomSDKLauncher/Core/Launchers/Customizable/AppLauncher/Templates/Java/PathFinders/PathJavaPathFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/UnitTests/Distroir/CustomSDKLauncher/Core/Launchers/Customizable/AppLauncher/Templates/Java/PathFinders/PathJavaPathFinderTests.cs -------------------------------------------------------------------------------- /UnitTests/Distroir/CustomSDKLauncher/Core/Launchers/Customizable/AppLauncher/Templates/JavaAppTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/UnitTests/Distroir/CustomSDKLauncher/Core/Launchers/Customizable/AppLauncher/Templates/JavaAppTemplateTests.cs -------------------------------------------------------------------------------- /UnitTests/Distroir/CustomSDKLauncher/Core/Launchers/Customizable/AppLauncher/Templates/SteamAppTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/UnitTests/Distroir/CustomSDKLauncher/Core/Launchers/Customizable/AppLauncher/Templates/SteamAppTemplateTests.cs -------------------------------------------------------------------------------- /UnitTests/Distroir/CustomSDKLauncher/Core/Launchers/Customizable/AppLauncher/Templates/TemplateSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/UnitTests/Distroir/CustomSDKLauncher/Core/Launchers/Customizable/AppLauncher/Templates/TemplateSerializationTests.cs -------------------------------------------------------------------------------- /UnitTests/Distroir/CustomSDKLauncher/Core/Utilities/BitmapComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/UnitTests/Distroir/CustomSDKLauncher/Core/Utilities/BitmapComparerTests.cs -------------------------------------------------------------------------------- /UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnitTests/UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/UnitTests/UnitTests.csproj -------------------------------------------------------------------------------- /UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RadCraftplay/Custom-CSGO-SDK-Launcher/HEAD/UnitTests/packages.config --------------------------------------------------------------------------------