├── .gitattributes ├── .gitignore ├── Config.cs ├── DMFlags.txt ├── Doom RPG Launcher.ico ├── Doom RPG SE Launcher.csproj ├── Doom RPG SE Launcher.sln ├── Enums.cs ├── Forks.txt ├── FormCommandLine.Designer.cs ├── FormCommandLine.cs ├── FormCommandLine.resx ├── FormMain.Designer.cs ├── FormMain.cs ├── FormMain.resx ├── FormSetName.Designer.cs ├── FormSetName.cs ├── FormSetName.resx ├── LICENSE ├── Octokitten.cs ├── PatchInfo.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Resources ├── AddFile_16x.png ├── Copy_16x.png ├── Eraser_16x.png ├── Pen1_16x.png └── Save_16x.png ├── Utils.cs └── app.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/.gitignore -------------------------------------------------------------------------------- /Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Config.cs -------------------------------------------------------------------------------- /DMFlags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/DMFlags.txt -------------------------------------------------------------------------------- /Doom RPG Launcher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Doom RPG Launcher.ico -------------------------------------------------------------------------------- /Doom RPG SE Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Doom RPG SE Launcher.csproj -------------------------------------------------------------------------------- /Doom RPG SE Launcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Doom RPG SE Launcher.sln -------------------------------------------------------------------------------- /Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Enums.cs -------------------------------------------------------------------------------- /Forks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Forks.txt -------------------------------------------------------------------------------- /FormCommandLine.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/FormCommandLine.Designer.cs -------------------------------------------------------------------------------- /FormCommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/FormCommandLine.cs -------------------------------------------------------------------------------- /FormCommandLine.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/FormCommandLine.resx -------------------------------------------------------------------------------- /FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/FormMain.Designer.cs -------------------------------------------------------------------------------- /FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/FormMain.cs -------------------------------------------------------------------------------- /FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/FormMain.resx -------------------------------------------------------------------------------- /FormSetName.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/FormSetName.Designer.cs -------------------------------------------------------------------------------- /FormSetName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/FormSetName.cs -------------------------------------------------------------------------------- /FormSetName.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/FormSetName.resx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/LICENSE -------------------------------------------------------------------------------- /Octokitten.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Octokitten.cs -------------------------------------------------------------------------------- /PatchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/PatchInfo.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/README.md -------------------------------------------------------------------------------- /Resources/AddFile_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Resources/AddFile_16x.png -------------------------------------------------------------------------------- /Resources/Copy_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Resources/Copy_16x.png -------------------------------------------------------------------------------- /Resources/Eraser_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Resources/Eraser_16x.png -------------------------------------------------------------------------------- /Resources/Pen1_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Resources/Pen1_16x.png -------------------------------------------------------------------------------- /Resources/Save_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Resources/Save_16x.png -------------------------------------------------------------------------------- /Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/Utils.cs -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forevener/DRPGSEL/HEAD/app.config --------------------------------------------------------------------------------