├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Steam Two.sln ├── Steam Two ├── AccountController.cs ├── AddAccount.xaml ├── AddAccount.xaml.cs ├── App.xaml ├── App.xaml.cs ├── BotMainWindow.xaml ├── BotMainWindow.xaml.cs ├── Encryption.cs ├── GetInput.xaml ├── GetInput.xaml.cs ├── LocalSteamController.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Settings.xaml ├── Settings.xaml.cs ├── SteamBotController.cs ├── SteamTwo.csproj ├── ToolWindow.xaml ├── ToolWindow.xaml.cs ├── favicon.ico ├── on.ico ├── packages.config ├── side.ico ├── steamChatWindow.xaml └── steamChatWindow.xaml.cs └── SteamTwo Launcher ├── App.config ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings └── SteamTwo Launcher.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/README.md -------------------------------------------------------------------------------- /Steam Two.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two.sln -------------------------------------------------------------------------------- /Steam Two/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/AccountController.cs -------------------------------------------------------------------------------- /Steam Two/AddAccount.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/AddAccount.xaml -------------------------------------------------------------------------------- /Steam Two/AddAccount.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/AddAccount.xaml.cs -------------------------------------------------------------------------------- /Steam Two/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/App.xaml -------------------------------------------------------------------------------- /Steam Two/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/App.xaml.cs -------------------------------------------------------------------------------- /Steam Two/BotMainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/BotMainWindow.xaml -------------------------------------------------------------------------------- /Steam Two/BotMainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/BotMainWindow.xaml.cs -------------------------------------------------------------------------------- /Steam Two/Encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/Encryption.cs -------------------------------------------------------------------------------- /Steam Two/GetInput.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/GetInput.xaml -------------------------------------------------------------------------------- /Steam Two/GetInput.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/GetInput.xaml.cs -------------------------------------------------------------------------------- /Steam Two/LocalSteamController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/LocalSteamController.cs -------------------------------------------------------------------------------- /Steam Two/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/MainWindow.xaml -------------------------------------------------------------------------------- /Steam Two/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Steam Two/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Steam Two/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Steam Two/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/Properties/Resources.resx -------------------------------------------------------------------------------- /Steam Two/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Steam Two/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/Properties/Settings.settings -------------------------------------------------------------------------------- /Steam Two/Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/Settings.xaml -------------------------------------------------------------------------------- /Steam Two/Settings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/Settings.xaml.cs -------------------------------------------------------------------------------- /Steam Two/SteamBotController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/SteamBotController.cs -------------------------------------------------------------------------------- /Steam Two/SteamTwo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/SteamTwo.csproj -------------------------------------------------------------------------------- /Steam Two/ToolWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/ToolWindow.xaml -------------------------------------------------------------------------------- /Steam Two/ToolWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/ToolWindow.xaml.cs -------------------------------------------------------------------------------- /Steam Two/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/favicon.ico -------------------------------------------------------------------------------- /Steam Two/on.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/on.ico -------------------------------------------------------------------------------- /Steam Two/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/packages.config -------------------------------------------------------------------------------- /Steam Two/side.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/side.ico -------------------------------------------------------------------------------- /Steam Two/steamChatWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/steamChatWindow.xaml -------------------------------------------------------------------------------- /Steam Two/steamChatWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/Steam Two/steamChatWindow.xaml.cs -------------------------------------------------------------------------------- /SteamTwo Launcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/SteamTwo Launcher/App.config -------------------------------------------------------------------------------- /SteamTwo Launcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/SteamTwo Launcher/Program.cs -------------------------------------------------------------------------------- /SteamTwo Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/SteamTwo Launcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SteamTwo Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/SteamTwo Launcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SteamTwo Launcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/SteamTwo Launcher/Properties/Resources.resx -------------------------------------------------------------------------------- /SteamTwo Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/SteamTwo Launcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SteamTwo Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/SteamTwo Launcher/Properties/Settings.settings -------------------------------------------------------------------------------- /SteamTwo Launcher/SteamTwo Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/00000vish/Steam-Two/HEAD/SteamTwo Launcher/SteamTwo Launcher.csproj --------------------------------------------------------------------------------