diff --git a/NuGet.Config b/NuGet.Config new file mode 100644 index 0000000..1864ded --- /dev/null +++ b/NuGet.Config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Plugin.cs b/Plugin.cs new file mode 100644 index 0000000..f077122 --- /dev/null +++ b/Plugin.cs @@ -0,0 +1,14 @@ +using BepInEx; + +namespace TaikoModStuff +{ + [BepInPlugin(PluginInfo.PLUGIN_GUID, PluginInfo.PLUGIN_NAME, PluginInfo.PLUGIN_VERSION)] + public class Plugin : BaseUnityPlugin + { + private void Awake() + { + // Plugin startup logic + Logger.LogInfo($"Plugin {PluginInfo.PLUGIN_GUID} is loaded!"); + } + } +} diff --git a/TaikoModStuff.csproj b/TaikoModStuff.csproj new file mode 100644 index 0000000..7a5ec40 --- /dev/null +++ b/TaikoModStuff.csproj @@ -0,0 +1,22 @@ + + + + net46 + TaikoModStuff + My first plugin + 1.0.0 + true + latest + + + + + + + + + + + + +