├── .gitattributes ├── README.md ├── bin ├── Vinesauce ROM Corruptor v1.0.0.zip ├── Vinesauce ROM Corruptor v1.1.0.zip ├── Vinesauce ROM Corruptor v1.2.1.zip └── Vinesauce ROM Corruptor v1.2.2.zip └── src ├── .gitignore ├── Vinesauce ROM Corruptor.sln ├── Vinesauce ROM Corruptor ├── Corruption.cs ├── HotkeyForm.Designer.cs ├── HotkeyForm.cs ├── HotkeyForm.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── QueueForm.Designer.cs ├── QueueForm.cs ├── QueueForm.resx ├── Resources │ └── Vinesauce Mushroom.png ├── RomId.cs ├── Vinesauce Mushroom.ico └── Vinesauce ROM Corruptor.csproj ├── changelog.txt └── license.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/README.md -------------------------------------------------------------------------------- /bin/Vinesauce ROM Corruptor v1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/bin/Vinesauce ROM Corruptor v1.0.0.zip -------------------------------------------------------------------------------- /bin/Vinesauce ROM Corruptor v1.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/bin/Vinesauce ROM Corruptor v1.1.0.zip -------------------------------------------------------------------------------- /bin/Vinesauce ROM Corruptor v1.2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/bin/Vinesauce ROM Corruptor v1.2.1.zip -------------------------------------------------------------------------------- /bin/Vinesauce ROM Corruptor v1.2.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/bin/Vinesauce ROM Corruptor v1.2.2.zip -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor.sln -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/Corruption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/Corruption.cs -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/HotkeyForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/HotkeyForm.Designer.cs -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/HotkeyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/HotkeyForm.cs -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/HotkeyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/HotkeyForm.resx -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/MainForm.cs -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/MainForm.resx -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/Program.cs -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/QueueForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/QueueForm.Designer.cs -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/QueueForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/QueueForm.cs -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/QueueForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/QueueForm.resx -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/Resources/Vinesauce Mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/Resources/Vinesauce Mushroom.png -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/RomId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/RomId.cs -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/Vinesauce Mushroom.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/Vinesauce Mushroom.ico -------------------------------------------------------------------------------- /src/Vinesauce ROM Corruptor/Vinesauce ROM Corruptor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/Vinesauce ROM Corruptor/Vinesauce ROM Corruptor.csproj -------------------------------------------------------------------------------- /src/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/changelog.txt -------------------------------------------------------------------------------- /src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rikerz/VRC/HEAD/src/license.txt --------------------------------------------------------------------------------