├── .gitignore ├── LICENSE ├── SteamAccCreator.sln └── SteamAccCreator ├── App.config ├── File └── FileManager.cs ├── Gui ├── AccountCreator.cs ├── CaptchaDialog.Designer.cs ├── CaptchaDialog.cs ├── CaptchaDialog.resx ├── InputDialog.Designer.cs ├── InputDialog.cs ├── InputDialog.resx ├── MainForm.Designer.cs ├── MainForm.cs └── MainForm.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── SteamAccCreator.csproj ├── Web ├── Error.cs ├── HttpHandler.cs └── MailHandler.cs └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/LICENSE -------------------------------------------------------------------------------- /SteamAccCreator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator.sln -------------------------------------------------------------------------------- /SteamAccCreator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/App.config -------------------------------------------------------------------------------- /SteamAccCreator/File/FileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/File/FileManager.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/AccountCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Gui/AccountCreator.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/CaptchaDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Gui/CaptchaDialog.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/CaptchaDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Gui/CaptchaDialog.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/CaptchaDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Gui/CaptchaDialog.resx -------------------------------------------------------------------------------- /SteamAccCreator/Gui/InputDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Gui/InputDialog.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/InputDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Gui/InputDialog.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/InputDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Gui/InputDialog.resx -------------------------------------------------------------------------------- /SteamAccCreator/Gui/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Gui/MainForm.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Gui/MainForm.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Gui/MainForm.resx -------------------------------------------------------------------------------- /SteamAccCreator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Program.cs -------------------------------------------------------------------------------- /SteamAccCreator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SteamAccCreator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Properties/Resources.resx -------------------------------------------------------------------------------- /SteamAccCreator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Properties/Settings.settings -------------------------------------------------------------------------------- /SteamAccCreator/SteamAccCreator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/SteamAccCreator.csproj -------------------------------------------------------------------------------- /SteamAccCreator/Web/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Web/Error.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/HttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Web/HttpHandler.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/MailHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/Web/MailHandler.cs -------------------------------------------------------------------------------- /SteamAccCreator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scytex/Steam-Account-Creator/HEAD/SteamAccCreator/packages.config --------------------------------------------------------------------------------