├── .gitignore ├── Config ├── CelestialBodies.cfg └── Settings.cfg ├── Icons ├── ps_disabled.png ├── ps_enabled.png └── ps_toolbar.png ├── LICENSE ├── PlanetShine.sln ├── PlanetShine.version ├── PlanetShine ├── Config.cs ├── Gui │ ├── GuiManager.cs │ └── GuiRenderer.cs ├── PlanetShine.cs ├── PlanetShine.csproj ├── Properties │ └── AssemblyInfo.cs └── Utils │ ├── CelestialBodyInfo.cs │ ├── Logger.cs │ ├── ToolbarWrapper.cs │ └── Utils.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/.gitignore -------------------------------------------------------------------------------- /Config/CelestialBodies.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/Config/CelestialBodies.cfg -------------------------------------------------------------------------------- /Config/Settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/Config/Settings.cfg -------------------------------------------------------------------------------- /Icons/ps_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/Icons/ps_disabled.png -------------------------------------------------------------------------------- /Icons/ps_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/Icons/ps_enabled.png -------------------------------------------------------------------------------- /Icons/ps_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/Icons/ps_toolbar.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/LICENSE -------------------------------------------------------------------------------- /PlanetShine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/PlanetShine.sln -------------------------------------------------------------------------------- /PlanetShine.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/PlanetShine.version -------------------------------------------------------------------------------- /PlanetShine/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/PlanetShine/Config.cs -------------------------------------------------------------------------------- /PlanetShine/Gui/GuiManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/PlanetShine/Gui/GuiManager.cs -------------------------------------------------------------------------------- /PlanetShine/Gui/GuiRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/PlanetShine/Gui/GuiRenderer.cs -------------------------------------------------------------------------------- /PlanetShine/PlanetShine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/PlanetShine/PlanetShine.cs -------------------------------------------------------------------------------- /PlanetShine/PlanetShine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/PlanetShine/PlanetShine.csproj -------------------------------------------------------------------------------- /PlanetShine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/PlanetShine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PlanetShine/Utils/CelestialBodyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/PlanetShine/Utils/CelestialBodyInfo.cs -------------------------------------------------------------------------------- /PlanetShine/Utils/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/PlanetShine/Utils/Logger.cs -------------------------------------------------------------------------------- /PlanetShine/Utils/ToolbarWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/PlanetShine/Utils/ToolbarWrapper.cs -------------------------------------------------------------------------------- /PlanetShine/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/PlanetShine/Utils/Utils.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valerian/ksp-planetshine/HEAD/README.md --------------------------------------------------------------------------------