commit 5eaffe1706ba43edeb45116331a614d990aaf146 Author: Lea Date: Sun May 19 22:38:50 2024 +0200 init commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cd42ee3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +bin/ +obj/ diff --git a/MetalButtplug.csproj b/MetalButtplug.csproj new file mode 100644 index 0000000..4ed088e --- /dev/null +++ b/MetalButtplug.csproj @@ -0,0 +1,21 @@ + + + + net6.0 + MetalButtplug + buttplug.io support for Metal: Hellsinger + 1.0.0 + true + latest + + https://api.nuget.org/v3/index.json; + https://nuget.bepinex.dev/v3/index.json + + MetalButtplug + + + + + + + diff --git a/MetalButtplug.sln b/MetalButtplug.sln new file mode 100644 index 0000000..0d1715d --- /dev/null +++ b/MetalButtplug.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.002.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MetalButtplug", "MetalButtplug.csproj", "{FD954D57-BFD1-4F34-8BF5-10A132488D78}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {FD954D57-BFD1-4F34-8BF5-10A132488D78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FD954D57-BFD1-4F34-8BF5-10A132488D78}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FD954D57-BFD1-4F34-8BF5-10A132488D78}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FD954D57-BFD1-4F34-8BF5-10A132488D78}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9EF42448-38C5-46F9-B788-6AB6B5E1AEDC} + EndGlobalSection +EndGlobal diff --git a/Plugin.cs b/Plugin.cs new file mode 100644 index 0000000..e602366 --- /dev/null +++ b/Plugin.cs @@ -0,0 +1,13 @@ +using BepInEx; +using BepInEx.Unity.IL2CPP; + +namespace MetalButtplug; + +[BepInPlugin(MyPluginInfo.PLUGIN_GUID, MyPluginInfo.PLUGIN_NAME, MyPluginInfo.PLUGIN_VERSION)] +public class Plugin : BasePlugin { + public override void Load() { + // Plugin startup logic + Log.LogInfo($"Plugin {MyPluginInfo.PLUGIN_GUID} is loaded!"); + Log.LogInfo("GAY SEX!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"); + } +}