├── AppInfo ├── AppInfoItem.cs ├── AppInfoItemKey.cs └── AppInfoVDF.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── SSELauncher.csproj ├── SSELauncher.ico ├── SSELauncher.sln ├── SSELauncher ├── ApiStatusParam.cs ├── AppConfig.cs ├── AppModifiedEventArgs.cs ├── AuthenticodeTools.cs ├── BgParam.cs ├── Config │ ├── CApp.cs │ ├── CAppList.cs │ ├── CConfig.cs │ └── KVDlc.cs ├── Forms │ ├── FrmAbout.cs │ ├── FrmAbout.resx │ ├── FrmAppMulti.cs │ ├── FrmAppSetting.cs │ ├── FrmAppSetting.resx │ ├── FrmMain.cs │ ├── FrmMain.resx │ ├── FrmSettings.cs │ └── FrmSettings.resx ├── NativeMethods.cs └── Program.cs ├── app.config └── vbAccelerator.Components.Shell ├── FileIcon.cs └── ShellLink.cs /AppInfo/AppInfoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/AppInfo/AppInfoItem.cs -------------------------------------------------------------------------------- /AppInfo/AppInfoItemKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/AppInfo/AppInfoItemKey.cs -------------------------------------------------------------------------------- /AppInfo/AppInfoVDF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/AppInfo/AppInfoVDF.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/README.md -------------------------------------------------------------------------------- /SSELauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher.csproj -------------------------------------------------------------------------------- /SSELauncher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher.ico -------------------------------------------------------------------------------- /SSELauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher.sln -------------------------------------------------------------------------------- /SSELauncher/ApiStatusParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/ApiStatusParam.cs -------------------------------------------------------------------------------- /SSELauncher/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/AppConfig.cs -------------------------------------------------------------------------------- /SSELauncher/AppModifiedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/AppModifiedEventArgs.cs -------------------------------------------------------------------------------- /SSELauncher/AuthenticodeTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/AuthenticodeTools.cs -------------------------------------------------------------------------------- /SSELauncher/BgParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/BgParam.cs -------------------------------------------------------------------------------- /SSELauncher/Config/CApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Config/CApp.cs -------------------------------------------------------------------------------- /SSELauncher/Config/CAppList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Config/CAppList.cs -------------------------------------------------------------------------------- /SSELauncher/Config/CConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Config/CConfig.cs -------------------------------------------------------------------------------- /SSELauncher/Config/KVDlc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Config/KVDlc.cs -------------------------------------------------------------------------------- /SSELauncher/Forms/FrmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Forms/FrmAbout.cs -------------------------------------------------------------------------------- /SSELauncher/Forms/FrmAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Forms/FrmAbout.resx -------------------------------------------------------------------------------- /SSELauncher/Forms/FrmAppMulti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Forms/FrmAppMulti.cs -------------------------------------------------------------------------------- /SSELauncher/Forms/FrmAppSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Forms/FrmAppSetting.cs -------------------------------------------------------------------------------- /SSELauncher/Forms/FrmAppSetting.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Forms/FrmAppSetting.resx -------------------------------------------------------------------------------- /SSELauncher/Forms/FrmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Forms/FrmMain.cs -------------------------------------------------------------------------------- /SSELauncher/Forms/FrmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Forms/FrmMain.resx -------------------------------------------------------------------------------- /SSELauncher/Forms/FrmSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Forms/FrmSettings.cs -------------------------------------------------------------------------------- /SSELauncher/Forms/FrmSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Forms/FrmSettings.resx -------------------------------------------------------------------------------- /SSELauncher/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/NativeMethods.cs -------------------------------------------------------------------------------- /SSELauncher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/SSELauncher/Program.cs -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/app.config -------------------------------------------------------------------------------- /vbAccelerator.Components.Shell/FileIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/vbAccelerator.Components.Shell/FileIcon.cs -------------------------------------------------------------------------------- /vbAccelerator.Components.Shell/ShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAXBURAOT/SmartSteamEmu/HEAD/vbAccelerator.Components.Shell/ShellLink.cs --------------------------------------------------------------------------------