├── .editorconfig ├── .github └── workflows │ ├── master.yml │ └── pr.yml ├── .gitignore ├── LICENSE ├── MorePrecisePlayerHeight.sln ├── MorePrecisePlayerHeight ├── Directory.Build.props ├── HarmonyPatches │ └── PlayerHeightSettingsControllerPatch.cs ├── Installers │ └── MPPHMenuInstaller.cs ├── Models │ └── HeightUnit.cs ├── MorePrecisePlayerHeight.csproj ├── Plugin.cs ├── Settings │ ├── PluginConfig.cs │ ├── Settings.bsml │ └── SettingsController.cs └── manifest.json └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/LICENSE -------------------------------------------------------------------------------- /MorePrecisePlayerHeight.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/MorePrecisePlayerHeight.sln -------------------------------------------------------------------------------- /MorePrecisePlayerHeight/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/MorePrecisePlayerHeight/Directory.Build.props -------------------------------------------------------------------------------- /MorePrecisePlayerHeight/HarmonyPatches/PlayerHeightSettingsControllerPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/MorePrecisePlayerHeight/HarmonyPatches/PlayerHeightSettingsControllerPatch.cs -------------------------------------------------------------------------------- /MorePrecisePlayerHeight/Installers/MPPHMenuInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/MorePrecisePlayerHeight/Installers/MPPHMenuInstaller.cs -------------------------------------------------------------------------------- /MorePrecisePlayerHeight/Models/HeightUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/MorePrecisePlayerHeight/Models/HeightUnit.cs -------------------------------------------------------------------------------- /MorePrecisePlayerHeight/MorePrecisePlayerHeight.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/MorePrecisePlayerHeight/MorePrecisePlayerHeight.csproj -------------------------------------------------------------------------------- /MorePrecisePlayerHeight/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/MorePrecisePlayerHeight/Plugin.cs -------------------------------------------------------------------------------- /MorePrecisePlayerHeight/Settings/PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/MorePrecisePlayerHeight/Settings/PluginConfig.cs -------------------------------------------------------------------------------- /MorePrecisePlayerHeight/Settings/Settings.bsml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/MorePrecisePlayerHeight/Settings/Settings.bsml -------------------------------------------------------------------------------- /MorePrecisePlayerHeight/Settings/SettingsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/MorePrecisePlayerHeight/Settings/SettingsController.cs -------------------------------------------------------------------------------- /MorePrecisePlayerHeight/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/MorePrecisePlayerHeight/manifest.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErisApps/MorePrecisePlayerHeight/HEAD/README.md --------------------------------------------------------------------------------