├── .gitignore ├── .gitmodules ├── .idea └── .idea.UKButt │ └── .idea │ ├── .gitignore │ ├── .name │ ├── encodings.xml │ ├── indexLayout.xml │ └── vcs.xml ├── ButtplugManager.cs ├── HarmonyPatches.cs ├── LICENSE.md ├── PluginInfo.cs ├── README.md ├── UKButt.csproj ├── UKButt.sln ├── UKButtProperties.cs ├── ULTRAKILL ├── UKButt.cs ├── UKButtCycleMode.cs └── UKButtStopCheat.cs ├── images ├── ULTRAKILL_kdJQzj2EeB.png ├── ULTRAKILL_xkNU4TP8PV.png └── intiface_central_PDJp72icP1.png └── lib ├── Buttplug LICENSE.md ├── ButtplugManaged.dll └── plog.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.idea.UKButt/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/.idea/.idea.UKButt/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.UKButt/.idea/.name: -------------------------------------------------------------------------------- 1 | UKButt -------------------------------------------------------------------------------- /.idea/.idea.UKButt/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/.idea/.idea.UKButt/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/.idea.UKButt/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/.idea/.idea.UKButt/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.UKButt/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/.idea/.idea.UKButt/.idea/vcs.xml -------------------------------------------------------------------------------- /ButtplugManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/ButtplugManager.cs -------------------------------------------------------------------------------- /HarmonyPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/HarmonyPatches.cs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PluginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/PluginInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/README.md -------------------------------------------------------------------------------- /UKButt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/UKButt.csproj -------------------------------------------------------------------------------- /UKButt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/UKButt.sln -------------------------------------------------------------------------------- /UKButtProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/UKButtProperties.cs -------------------------------------------------------------------------------- /ULTRAKILL/UKButt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/ULTRAKILL/UKButt.cs -------------------------------------------------------------------------------- /ULTRAKILL/UKButtCycleMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/ULTRAKILL/UKButtCycleMode.cs -------------------------------------------------------------------------------- /ULTRAKILL/UKButtStopCheat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/ULTRAKILL/UKButtStopCheat.cs -------------------------------------------------------------------------------- /images/ULTRAKILL_kdJQzj2EeB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/images/ULTRAKILL_kdJQzj2EeB.png -------------------------------------------------------------------------------- /images/ULTRAKILL_xkNU4TP8PV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/images/ULTRAKILL_xkNU4TP8PV.png -------------------------------------------------------------------------------- /images/intiface_central_PDJp72icP1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/images/intiface_central_PDJp72icP1.png -------------------------------------------------------------------------------- /lib/Buttplug LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/lib/Buttplug LICENSE.md -------------------------------------------------------------------------------- /lib/ButtplugManaged.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/lib/ButtplugManaged.dll -------------------------------------------------------------------------------- /lib/plog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PITR-DEV/ukbutt-mod/HEAD/lib/plog.dll --------------------------------------------------------------------------------