├── .editorconfig ├── .gitignore ├── CityLauncher.csproj ├── CityLauncher.sln ├── Data ├── Controls │ ├── InputHandler.cs │ ├── InputReader.cs │ └── InputWriter.cs ├── Display │ ├── ImageTooltip.cs │ ├── IniHandler.cs │ ├── IniReader.cs │ ├── IniWriter.cs │ ├── PresetHandler.cs │ ├── Readme.md │ └── Resolution.cs ├── FileHandler.cs └── SystemHandler.cs ├── LICENSE ├── Program.cs ├── Properties ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Resources ├── About_Image_4_border.jpg ├── BmCamera.ini ├── BmCompat.ini ├── BmEngine.ini ├── BmGame.ini ├── BmInput.ini ├── BmLightmass.ini ├── BmUI.ini ├── Default_2.jpg ├── GlobalShaderCache-PC-D3D-SM3.bin ├── GlobalShaderCache-PC-D3D-SM5.bin ├── High Contrast_2.jpg ├── Log 1_2.jpg ├── Log 2_2.jpg ├── Monochrome_2.jpg ├── Muted_2.jpg ├── Phase1.jpg ├── Phase2.jpg ├── Phase3.jpg ├── UserEngine.ini ├── UserGame.ini ├── UserInput.ini ├── centre_camera.txt ├── custom_commands.txt ├── icon2.ico ├── nexus_icon.ico └── startup.wav ├── UI ├── CityLauncher.Designer.cs ├── CityLauncher.cs ├── CityLauncher.resx ├── InputForm.Designer.cs ├── InputForm.cs └── InputForm.resx ├── _config.yml ├── _layouts └── default.html ├── _sass └── jekyll-theme-minimalist.scss └── favicon.ico /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /CityLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/CityLauncher.csproj -------------------------------------------------------------------------------- /CityLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/CityLauncher.sln -------------------------------------------------------------------------------- /Data/Controls/InputHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Data/Controls/InputHandler.cs -------------------------------------------------------------------------------- /Data/Controls/InputReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Data/Controls/InputReader.cs -------------------------------------------------------------------------------- /Data/Controls/InputWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Data/Controls/InputWriter.cs -------------------------------------------------------------------------------- /Data/Display/ImageTooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Data/Display/ImageTooltip.cs -------------------------------------------------------------------------------- /Data/Display/IniHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Data/Display/IniHandler.cs -------------------------------------------------------------------------------- /Data/Display/IniReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Data/Display/IniReader.cs -------------------------------------------------------------------------------- /Data/Display/IniWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Data/Display/IniWriter.cs -------------------------------------------------------------------------------- /Data/Display/PresetHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Data/Display/PresetHandler.cs -------------------------------------------------------------------------------- /Data/Display/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Data/Display/Readme.md -------------------------------------------------------------------------------- /Data/Display/Resolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Data/Display/Resolution.cs -------------------------------------------------------------------------------- /Data/FileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Data/FileHandler.cs -------------------------------------------------------------------------------- /Data/SystemHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Data/SystemHandler.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/README.md -------------------------------------------------------------------------------- /Resources/About_Image_4_border.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/About_Image_4_border.jpg -------------------------------------------------------------------------------- /Resources/BmCamera.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/BmCamera.ini -------------------------------------------------------------------------------- /Resources/BmCompat.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/BmCompat.ini -------------------------------------------------------------------------------- /Resources/BmEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/BmEngine.ini -------------------------------------------------------------------------------- /Resources/BmGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/BmGame.ini -------------------------------------------------------------------------------- /Resources/BmInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/BmInput.ini -------------------------------------------------------------------------------- /Resources/BmLightmass.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/BmLightmass.ini -------------------------------------------------------------------------------- /Resources/BmUI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/BmUI.ini -------------------------------------------------------------------------------- /Resources/Default_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/Default_2.jpg -------------------------------------------------------------------------------- /Resources/GlobalShaderCache-PC-D3D-SM3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/GlobalShaderCache-PC-D3D-SM3.bin -------------------------------------------------------------------------------- /Resources/GlobalShaderCache-PC-D3D-SM5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/GlobalShaderCache-PC-D3D-SM5.bin -------------------------------------------------------------------------------- /Resources/High Contrast_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/High Contrast_2.jpg -------------------------------------------------------------------------------- /Resources/Log 1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/Log 1_2.jpg -------------------------------------------------------------------------------- /Resources/Log 2_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/Log 2_2.jpg -------------------------------------------------------------------------------- /Resources/Monochrome_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/Monochrome_2.jpg -------------------------------------------------------------------------------- /Resources/Muted_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/Muted_2.jpg -------------------------------------------------------------------------------- /Resources/Phase1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/Phase1.jpg -------------------------------------------------------------------------------- /Resources/Phase2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/Phase2.jpg -------------------------------------------------------------------------------- /Resources/Phase3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/Phase3.jpg -------------------------------------------------------------------------------- /Resources/UserEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/UserEngine.ini -------------------------------------------------------------------------------- /Resources/UserGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/UserGame.ini -------------------------------------------------------------------------------- /Resources/UserInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/UserInput.ini -------------------------------------------------------------------------------- /Resources/centre_camera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/centre_camera.txt -------------------------------------------------------------------------------- /Resources/custom_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/custom_commands.txt -------------------------------------------------------------------------------- /Resources/icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/icon2.ico -------------------------------------------------------------------------------- /Resources/nexus_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/nexus_icon.ico -------------------------------------------------------------------------------- /Resources/startup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/Resources/startup.wav -------------------------------------------------------------------------------- /UI/CityLauncher.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/UI/CityLauncher.Designer.cs -------------------------------------------------------------------------------- /UI/CityLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/UI/CityLauncher.cs -------------------------------------------------------------------------------- /UI/CityLauncher.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/UI/CityLauncher.resx -------------------------------------------------------------------------------- /UI/InputForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/UI/InputForm.Designer.cs -------------------------------------------------------------------------------- /UI/InputForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/UI/InputForm.cs -------------------------------------------------------------------------------- /UI/InputForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/UI/InputForm.resx -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_sass/jekyll-theme-minimalist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/_sass/jekyll-theme-minimalist.scss -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neatodev/CityLauncher/HEAD/favicon.ico --------------------------------------------------------------------------------