├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── SmolMod ├── Patches │ ├── CosmeticsLayerPatch.cs │ ├── HudStartPatch.cs │ └── PlayerControlPatch.cs ├── SmolMod.csproj └── SmolModPlugin.cs ├── SmolSolution.sln └── nuget.config /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XtraCube/SmolMod/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XtraCube/SmolMod/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XtraCube/SmolMod/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XtraCube/SmolMod/HEAD/README.md -------------------------------------------------------------------------------- /SmolMod/Patches/CosmeticsLayerPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XtraCube/SmolMod/HEAD/SmolMod/Patches/CosmeticsLayerPatch.cs -------------------------------------------------------------------------------- /SmolMod/Patches/HudStartPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XtraCube/SmolMod/HEAD/SmolMod/Patches/HudStartPatch.cs -------------------------------------------------------------------------------- /SmolMod/Patches/PlayerControlPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XtraCube/SmolMod/HEAD/SmolMod/Patches/PlayerControlPatch.cs -------------------------------------------------------------------------------- /SmolMod/SmolMod.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XtraCube/SmolMod/HEAD/SmolMod/SmolMod.csproj -------------------------------------------------------------------------------- /SmolMod/SmolModPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XtraCube/SmolMod/HEAD/SmolMod/SmolModPlugin.cs -------------------------------------------------------------------------------- /SmolSolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XtraCube/SmolMod/HEAD/SmolSolution.sln -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XtraCube/SmolMod/HEAD/nuget.config --------------------------------------------------------------------------------