├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ ├── on-version-bump.yml │ ├── virus-total-scan.yml │ └── winget-publish.yml ├── .gitignore ├── CSAuto.sln ├── Data ├── colors ├── full_changelog.json └── version ├── Docs ├── FullChangelog.MD ├── README_ru.md ├── assets │ ├── android-badge.png │ ├── app_discord.png │ ├── menuimage.png │ ├── smallimage.bmp │ ├── virustotal_icon.png │ ├── windows-installer-badge.png │ └── windows-portable-badge.png └── logo │ ├── CSAuto_logo.ai │ ├── CSAuto_logo.svg │ └── README.md ├── LICENSE ├── Misc ├── CompileData.template ├── _APIKeys.Designer.cs ├── _APIKeys.resx ├── compinfgen.exe ├── filepack.exe ├── fldmv.exe └── prebuild.bat ├── README.md ├── compile.bat ├── installer.iss ├── scripts ├── full_changelog.py └── version.py └── src ├── CSAuto ├── .editorconfig ├── App.config ├── App.xaml ├── App.xaml.cs ├── AutoBuyMenu.cs ├── CSAuto.csproj ├── CompileInfo.cs ├── DXGICapture.dll ├── DeadCodeRuleset.ruleset ├── DiscordRPCButtonSerializer.cs ├── Icons │ └── main.ico ├── Images │ ├── App_Icon.png │ └── CS_ICON.png ├── Languages │ ├── AppLanguage.cs │ ├── Strings.Designer.cs │ ├── Strings.he.resx │ ├── Strings.resx │ └── Strings.ru.resx ├── MainApp.xaml ├── MainApp.xaml.cs ├── MarkdownHelper.cs ├── Native │ ├── DisplayInfo.cs │ ├── NativeMethods.cs │ └── RECT.cs ├── NotifyIcon │ ├── Definitions.cs │ ├── ExternDll.cs │ ├── MouseButtonEventArgs.cs │ ├── MouseLocationEventArgs.cs │ ├── NativeMethods.cs │ ├── NotifyIconWrapper.cs │ └── SystemInf │ │ ├── ExternDll.cs │ │ ├── NativeMethods.cs │ │ └── SystemInformation.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DebugSettings.Designer.cs │ ├── DebugSettings.settings │ ├── Resources.Designer.cs │ ├── Resources.he.resx │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── RTLResource.xaml │ ├── RoundedResources.xaml │ └── VectorImages.xaml ├── Shared │ ├── NetworkTypes.cs │ └── StreamString.cs ├── Utils │ ├── CS │ │ ├── BindCommandSender.cs │ │ ├── CSFriendCode.cs │ │ ├── CSMap.cs │ │ ├── ConDump.cs │ │ ├── GameState.cs │ │ ├── GameStateListener.cs │ │ └── NetCon.cs │ ├── DXGICapture.cs │ ├── FileLoader.cs │ ├── Github.cs │ ├── Input.cs │ ├── Log.cs │ ├── Music.cs │ ├── Nager.TcpClient │ │ ├── TcpClient.cs │ │ ├── TcpClientConfig.cs │ │ ├── TcpClientKeepAliveConfig.cs │ │ └── TcpClientKeepaliveExtension.cs │ ├── RegistrySettings.cs │ ├── Steam.cs │ ├── Telegram.cs │ └── WinVersion.cs ├── Windows │ ├── DebugInfo.xaml │ ├── DebugInfo.xaml.cs │ ├── DebugSettings.xaml │ ├── DebugSettings.xaml.cs │ ├── GUIWindow.xaml │ └── GUIWindow.xaml.cs ├── csauto.manifest └── resource │ ├── .portable │ └── images │ ├── ct_auto_buy.png │ ├── t_auto_buy.png │ ├── weapon_ak47.png │ ├── weapon_aug.png │ ├── weapon_awp.png │ ├── weapon_cz75auto.png │ ├── weapon_deagle.png │ ├── weapon_dualberettas.png │ ├── weapon_famas.png │ ├── weapon_fiveseven.png │ ├── weapon_g3sg1.png │ ├── weapon_galilar.png │ ├── weapon_m249.png │ ├── weapon_m4a1s.png │ ├── weapon_m4a4.png │ ├── weapon_mac10.png │ ├── weapon_mag7.png │ ├── weapon_mp5sd.png │ ├── weapon_mp7.png │ ├── weapon_mp9.png │ ├── weapon_negev.png │ ├── weapon_nova.png │ ├── weapon_p250.png │ ├── weapon_p90.png │ ├── weapon_ppbizon.png │ ├── weapon_r8revolver.png │ ├── weapon_sawedoff.png │ ├── weapon_scar20.png │ ├── weapon_sg553.png │ ├── weapon_ssg08.png │ ├── weapon_tec9.png │ ├── weapon_ump45.png │ └── weapon_xm1014.png ├── CSAuto_Mobile (OLD) ├── Assets │ └── AboutAssets.txt ├── CSAuto_Mobile (OLD).csproj ├── CSGOFriendCode.cs ├── Constants.cs ├── GameState.cs ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── layout │ │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml └── ServerService.cs ├── CSAuto_Mobile ├── AndroidManifest.xml ├── AppPreferences.cs ├── CSAuto_Mobile.csproj ├── Constants.cs ├── Globals.cs ├── MainActivity.cs ├── Resources │ ├── AboutResources.txt │ ├── drawable │ │ ├── ct.png │ │ └── t.png │ ├── layout │ │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ │ ├── appicon.xml │ │ ├── appicon_round.xml │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ ├── appicon_foreground.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ ├── appicon_foreground.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ ├── appicon_foreground.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ ├── appicon_foreground.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ ├── appicon_foreground.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml └── ServerService.cs ├── SteamAPIServer ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SteamAPIServer.csproj ├── Steamworks.NET.dll └── steam_api.dll └── Updater ├── App.config ├── App.xaml ├── App.xaml.cs ├── Log.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Unzip.cs ├── Updater.csproj ├── packages.config └── updater.manifest /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/on-version-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/.github/workflows/on-version-bump.yml -------------------------------------------------------------------------------- /.github/workflows/virus-total-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/.github/workflows/virus-total-scan.yml -------------------------------------------------------------------------------- /.github/workflows/winget-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/.github/workflows/winget-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/.gitignore -------------------------------------------------------------------------------- /CSAuto.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/CSAuto.sln -------------------------------------------------------------------------------- /Data/colors: -------------------------------------------------------------------------------- 1 | 54,183,82 2 | 59,198,90 -------------------------------------------------------------------------------- /Data/full_changelog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Data/full_changelog.json -------------------------------------------------------------------------------- /Data/version: -------------------------------------------------------------------------------- 1 | 2.2.3 -------------------------------------------------------------------------------- /Docs/FullChangelog.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Docs/FullChangelog.MD -------------------------------------------------------------------------------- /Docs/README_ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Docs/README_ru.md -------------------------------------------------------------------------------- /Docs/assets/android-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Docs/assets/android-badge.png -------------------------------------------------------------------------------- /Docs/assets/app_discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Docs/assets/app_discord.png -------------------------------------------------------------------------------- /Docs/assets/menuimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Docs/assets/menuimage.png -------------------------------------------------------------------------------- /Docs/assets/smallimage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Docs/assets/smallimage.bmp -------------------------------------------------------------------------------- /Docs/assets/virustotal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Docs/assets/virustotal_icon.png -------------------------------------------------------------------------------- /Docs/assets/windows-installer-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Docs/assets/windows-installer-badge.png -------------------------------------------------------------------------------- /Docs/assets/windows-portable-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Docs/assets/windows-portable-badge.png -------------------------------------------------------------------------------- /Docs/logo/CSAuto_logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Docs/logo/CSAuto_logo.ai -------------------------------------------------------------------------------- /Docs/logo/CSAuto_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Docs/logo/CSAuto_logo.svg -------------------------------------------------------------------------------- /Docs/logo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Docs/logo/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/LICENSE -------------------------------------------------------------------------------- /Misc/CompileData.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Misc/CompileData.template -------------------------------------------------------------------------------- /Misc/_APIKeys.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Misc/_APIKeys.Designer.cs -------------------------------------------------------------------------------- /Misc/_APIKeys.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Misc/_APIKeys.resx -------------------------------------------------------------------------------- /Misc/compinfgen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Misc/compinfgen.exe -------------------------------------------------------------------------------- /Misc/filepack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Misc/filepack.exe -------------------------------------------------------------------------------- /Misc/fldmv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Misc/fldmv.exe -------------------------------------------------------------------------------- /Misc/prebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/Misc/prebuild.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/README.md -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/compile.bat -------------------------------------------------------------------------------- /installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/installer.iss -------------------------------------------------------------------------------- /scripts/full_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/scripts/full_changelog.py -------------------------------------------------------------------------------- /scripts/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/scripts/version.py -------------------------------------------------------------------------------- /src/CSAuto/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/.editorconfig -------------------------------------------------------------------------------- /src/CSAuto/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/App.config -------------------------------------------------------------------------------- /src/CSAuto/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/App.xaml -------------------------------------------------------------------------------- /src/CSAuto/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/App.xaml.cs -------------------------------------------------------------------------------- /src/CSAuto/AutoBuyMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/AutoBuyMenu.cs -------------------------------------------------------------------------------- /src/CSAuto/CSAuto.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/CSAuto.csproj -------------------------------------------------------------------------------- /src/CSAuto/CompileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/CompileInfo.cs -------------------------------------------------------------------------------- /src/CSAuto/DXGICapture.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/DXGICapture.dll -------------------------------------------------------------------------------- /src/CSAuto/DeadCodeRuleset.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/DeadCodeRuleset.ruleset -------------------------------------------------------------------------------- /src/CSAuto/DiscordRPCButtonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/DiscordRPCButtonSerializer.cs -------------------------------------------------------------------------------- /src/CSAuto/Icons/main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Icons/main.ico -------------------------------------------------------------------------------- /src/CSAuto/Images/App_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Images/App_Icon.png -------------------------------------------------------------------------------- /src/CSAuto/Images/CS_ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Images/CS_ICON.png -------------------------------------------------------------------------------- /src/CSAuto/Languages/AppLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Languages/AppLanguage.cs -------------------------------------------------------------------------------- /src/CSAuto/Languages/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Languages/Strings.Designer.cs -------------------------------------------------------------------------------- /src/CSAuto/Languages/Strings.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Languages/Strings.he.resx -------------------------------------------------------------------------------- /src/CSAuto/Languages/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Languages/Strings.resx -------------------------------------------------------------------------------- /src/CSAuto/Languages/Strings.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Languages/Strings.ru.resx -------------------------------------------------------------------------------- /src/CSAuto/MainApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/MainApp.xaml -------------------------------------------------------------------------------- /src/CSAuto/MainApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/MainApp.xaml.cs -------------------------------------------------------------------------------- /src/CSAuto/MarkdownHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/MarkdownHelper.cs -------------------------------------------------------------------------------- /src/CSAuto/Native/DisplayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Native/DisplayInfo.cs -------------------------------------------------------------------------------- /src/CSAuto/Native/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Native/NativeMethods.cs -------------------------------------------------------------------------------- /src/CSAuto/Native/RECT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Native/RECT.cs -------------------------------------------------------------------------------- /src/CSAuto/NotifyIcon/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/NotifyIcon/Definitions.cs -------------------------------------------------------------------------------- /src/CSAuto/NotifyIcon/ExternDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/NotifyIcon/ExternDll.cs -------------------------------------------------------------------------------- /src/CSAuto/NotifyIcon/MouseButtonEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/NotifyIcon/MouseButtonEventArgs.cs -------------------------------------------------------------------------------- /src/CSAuto/NotifyIcon/MouseLocationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/NotifyIcon/MouseLocationEventArgs.cs -------------------------------------------------------------------------------- /src/CSAuto/NotifyIcon/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/NotifyIcon/NativeMethods.cs -------------------------------------------------------------------------------- /src/CSAuto/NotifyIcon/NotifyIconWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/NotifyIcon/NotifyIconWrapper.cs -------------------------------------------------------------------------------- /src/CSAuto/NotifyIcon/SystemInf/ExternDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/NotifyIcon/SystemInf/ExternDll.cs -------------------------------------------------------------------------------- /src/CSAuto/NotifyIcon/SystemInf/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/NotifyIcon/SystemInf/NativeMethods.cs -------------------------------------------------------------------------------- /src/CSAuto/NotifyIcon/SystemInf/SystemInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/NotifyIcon/SystemInf/SystemInformation.cs -------------------------------------------------------------------------------- /src/CSAuto/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CSAuto/Properties/DebugSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Properties/DebugSettings.Designer.cs -------------------------------------------------------------------------------- /src/CSAuto/Properties/DebugSettings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Properties/DebugSettings.settings -------------------------------------------------------------------------------- /src/CSAuto/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/CSAuto/Properties/Resources.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Properties/Resources.he.resx -------------------------------------------------------------------------------- /src/CSAuto/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Properties/Resources.resx -------------------------------------------------------------------------------- /src/CSAuto/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/CSAuto/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Properties/Settings.settings -------------------------------------------------------------------------------- /src/CSAuto/Resources/RTLResource.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Resources/RTLResource.xaml -------------------------------------------------------------------------------- /src/CSAuto/Resources/RoundedResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Resources/RoundedResources.xaml -------------------------------------------------------------------------------- /src/CSAuto/Resources/VectorImages.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Resources/VectorImages.xaml -------------------------------------------------------------------------------- /src/CSAuto/Shared/NetworkTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Shared/NetworkTypes.cs -------------------------------------------------------------------------------- /src/CSAuto/Shared/StreamString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Shared/StreamString.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/CS/BindCommandSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/CS/BindCommandSender.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/CS/CSFriendCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/CS/CSFriendCode.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/CS/CSMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/CS/CSMap.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/CS/ConDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/CS/ConDump.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/CS/GameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/CS/GameState.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/CS/GameStateListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/CS/GameStateListener.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/CS/NetCon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/CS/NetCon.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/DXGICapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/DXGICapture.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/FileLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/FileLoader.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/Github.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/Github.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/Input.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/Log.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/Music.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/Music.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/Nager.TcpClient/TcpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/Nager.TcpClient/TcpClient.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/Nager.TcpClient/TcpClientConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/Nager.TcpClient/TcpClientConfig.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/Nager.TcpClient/TcpClientKeepAliveConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/Nager.TcpClient/TcpClientKeepAliveConfig.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/Nager.TcpClient/TcpClientKeepaliveExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/Nager.TcpClient/TcpClientKeepaliveExtension.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/RegistrySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/RegistrySettings.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/Steam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/Steam.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/Telegram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/Telegram.cs -------------------------------------------------------------------------------- /src/CSAuto/Utils/WinVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Utils/WinVersion.cs -------------------------------------------------------------------------------- /src/CSAuto/Windows/DebugInfo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Windows/DebugInfo.xaml -------------------------------------------------------------------------------- /src/CSAuto/Windows/DebugInfo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Windows/DebugInfo.xaml.cs -------------------------------------------------------------------------------- /src/CSAuto/Windows/DebugSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Windows/DebugSettings.xaml -------------------------------------------------------------------------------- /src/CSAuto/Windows/DebugSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Windows/DebugSettings.xaml.cs -------------------------------------------------------------------------------- /src/CSAuto/Windows/GUIWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Windows/GUIWindow.xaml -------------------------------------------------------------------------------- /src/CSAuto/Windows/GUIWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/Windows/GUIWindow.xaml.cs -------------------------------------------------------------------------------- /src/CSAuto/csauto.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/csauto.manifest -------------------------------------------------------------------------------- /src/CSAuto/resource/.portable: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/CSAuto/resource/images/ct_auto_buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/ct_auto_buy.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/t_auto_buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/t_auto_buy.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_ak47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_ak47.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_aug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_aug.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_awp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_awp.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_cz75auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_cz75auto.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_deagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_deagle.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_dualberettas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_dualberettas.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_famas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_famas.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_fiveseven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_fiveseven.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_g3sg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_g3sg1.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_galilar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_galilar.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_m249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_m249.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_m4a1s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_m4a1s.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_m4a4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_m4a4.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_mac10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_mac10.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_mag7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_mag7.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_mp5sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_mp5sd.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_mp7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_mp7.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_mp9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_mp9.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_negev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_negev.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_nova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_nova.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_p250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_p250.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_p90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_p90.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_ppbizon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_ppbizon.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_r8revolver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_r8revolver.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_sawedoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_sawedoff.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_scar20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_scar20.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_sg553.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_sg553.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_ssg08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_ssg08.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_tec9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_tec9.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_ump45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_ump45.png -------------------------------------------------------------------------------- /src/CSAuto/resource/images/weapon_xm1014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto/resource/images/weapon_xm1014.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/CSAuto_Mobile (OLD).csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/CSAuto_Mobile (OLD).csproj -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/CSGOFriendCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/CSGOFriendCode.cs -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Constants.cs -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/GameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/GameState.cs -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/MainActivity.cs -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/values/strings.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/Resources/values/styles.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile (OLD)/ServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile (OLD)/ServerService.cs -------------------------------------------------------------------------------- /src/CSAuto_Mobile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/AndroidManifest.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile/AppPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/AppPreferences.cs -------------------------------------------------------------------------------- /src/CSAuto_Mobile/CSAuto_Mobile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/CSAuto_Mobile.csproj -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Constants.cs -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Globals.cs -------------------------------------------------------------------------------- /src/CSAuto_Mobile/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/MainActivity.cs -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/drawable/ct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/drawable/ct.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/drawable/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/drawable/t.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-anydpi-v26/appicon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-anydpi-v26/appicon.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-anydpi-v26/appicon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-anydpi-v26/appicon_round.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-hdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-hdpi/appicon.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-hdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-hdpi/appicon_background.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-hdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-hdpi/appicon_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-mdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-mdpi/appicon.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-mdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-mdpi/appicon_background.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-mdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-mdpi/appicon_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xhdpi/appicon.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xhdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xhdpi/appicon_background.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xhdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xhdpi/appicon_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xxhdpi/appicon.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xxhdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xxhdpi/appicon_background.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xxhdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xxhdpi/appicon_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xxxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xxxhdpi/appicon.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xxxhdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xxxhdpi/appicon_background.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xxxhdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xxxhdpi/appicon_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/values/strings.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/Resources/values/styles.xml -------------------------------------------------------------------------------- /src/CSAuto_Mobile/ServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/CSAuto_Mobile/ServerService.cs -------------------------------------------------------------------------------- /src/SteamAPIServer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/SteamAPIServer/App.config -------------------------------------------------------------------------------- /src/SteamAPIServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/SteamAPIServer/Program.cs -------------------------------------------------------------------------------- /src/SteamAPIServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/SteamAPIServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SteamAPIServer/SteamAPIServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/SteamAPIServer/SteamAPIServer.csproj -------------------------------------------------------------------------------- /src/SteamAPIServer/Steamworks.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/SteamAPIServer/Steamworks.NET.dll -------------------------------------------------------------------------------- /src/SteamAPIServer/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/SteamAPIServer/steam_api.dll -------------------------------------------------------------------------------- /src/Updater/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/App.config -------------------------------------------------------------------------------- /src/Updater/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/App.xaml -------------------------------------------------------------------------------- /src/Updater/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/App.xaml.cs -------------------------------------------------------------------------------- /src/Updater/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/Log.cs -------------------------------------------------------------------------------- /src/Updater/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/MainWindow.xaml -------------------------------------------------------------------------------- /src/Updater/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Updater/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Updater/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Updater/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Updater/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Updater/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Updater/Unzip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/Unzip.cs -------------------------------------------------------------------------------- /src/Updater/Updater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/Updater.csproj -------------------------------------------------------------------------------- /src/Updater/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/packages.config -------------------------------------------------------------------------------- /src/Updater/updater.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurkyYT/CSAuto/HEAD/src/Updater/updater.manifest --------------------------------------------------------------------------------