├── .gitignore ├── GlowingBrakes.sln ├── GlowingBrakes ├── AssemblyInfo1.cs ├── GlowVehicle.cs ├── GlowingBrakes.csproj ├── GlowingBrakesMain.cs ├── Logger.cs ├── MathExt.cs ├── Ptfx.cs ├── SerializableDictionary.cs ├── Settings.cs ├── Timer.cs ├── Utility.cs ├── VehicleConfig.cs ├── VehicleExtensions.cs └── packages.config ├── LICENSE ├── README.md ├── description-5mods.html └── settings └── GlowingBrakes ├── Configs ├── EvoSix.xml ├── P306.xml ├── T20.xml ├── bifta.xml └── defaultConfig.xml ├── PUT_DLL_HERE └── settings.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/.gitignore -------------------------------------------------------------------------------- /GlowingBrakes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes.sln -------------------------------------------------------------------------------- /GlowingBrakes/AssemblyInfo1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/AssemblyInfo1.cs -------------------------------------------------------------------------------- /GlowingBrakes/GlowVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/GlowVehicle.cs -------------------------------------------------------------------------------- /GlowingBrakes/GlowingBrakes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/GlowingBrakes.csproj -------------------------------------------------------------------------------- /GlowingBrakes/GlowingBrakesMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/GlowingBrakesMain.cs -------------------------------------------------------------------------------- /GlowingBrakes/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/Logger.cs -------------------------------------------------------------------------------- /GlowingBrakes/MathExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/MathExt.cs -------------------------------------------------------------------------------- /GlowingBrakes/Ptfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/Ptfx.cs -------------------------------------------------------------------------------- /GlowingBrakes/SerializableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/SerializableDictionary.cs -------------------------------------------------------------------------------- /GlowingBrakes/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/Settings.cs -------------------------------------------------------------------------------- /GlowingBrakes/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/Timer.cs -------------------------------------------------------------------------------- /GlowingBrakes/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/Utility.cs -------------------------------------------------------------------------------- /GlowingBrakes/VehicleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/VehicleConfig.cs -------------------------------------------------------------------------------- /GlowingBrakes/VehicleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/VehicleExtensions.cs -------------------------------------------------------------------------------- /GlowingBrakes/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/GlowingBrakes/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/README.md -------------------------------------------------------------------------------- /description-5mods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/description-5mods.html -------------------------------------------------------------------------------- /settings/GlowingBrakes/Configs/EvoSix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/settings/GlowingBrakes/Configs/EvoSix.xml -------------------------------------------------------------------------------- /settings/GlowingBrakes/Configs/P306.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/settings/GlowingBrakes/Configs/P306.xml -------------------------------------------------------------------------------- /settings/GlowingBrakes/Configs/T20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/settings/GlowingBrakes/Configs/T20.xml -------------------------------------------------------------------------------- /settings/GlowingBrakes/Configs/bifta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/settings/GlowingBrakes/Configs/bifta.xml -------------------------------------------------------------------------------- /settings/GlowingBrakes/Configs/defaultConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/settings/GlowingBrakes/Configs/defaultConfig.xml -------------------------------------------------------------------------------- /settings/GlowingBrakes/PUT_DLL_HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /settings/GlowingBrakes/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikt32/GTAVGlowingBrakes/HEAD/settings/GlowingBrakes/settings.xml --------------------------------------------------------------------------------