From 1a8bfa56697019f893ec5d3cf987431b9c4bcd72 Mon Sep 17 00:00:00 2001 From: Repflez <659133+Repflez@users.noreply.github.com> Date: Thu, 27 Jan 2022 10:23:54 -0700 Subject: [PATCH] Add project files. --- NuGet.Config | 6 ++++++ Plugin.cs | 14 ++++++++++++++ TaikoModStuff.csproj | 22 ++++++++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 NuGet.Config create mode 100644 Plugin.cs create mode 100644 TaikoModStuff.csproj 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 + + + + + + + + + + + + +