diff options
Diffstat (limited to 'AnodyneArchipelago/Plugin.cs')
| -rw-r--r-- | AnodyneArchipelago/Plugin.cs | 15 |
1 files changed, 15 insertions, 0 deletions
| diff --git a/AnodyneArchipelago/Plugin.cs b/AnodyneArchipelago/Plugin.cs new file mode 100644 index 0000000..411a2a4 --- /dev/null +++ b/AnodyneArchipelago/Plugin.cs | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | using BepInEx; | ||
| 2 | using BepInEx.NET.Common; | ||
| 3 | |||
| 4 | namespace AnodyneArchipelago | ||
| 5 | { | ||
| 6 | [BepInPlugin("com.fourisland.plugins.anodyne.archipelago", "Anodyne Archipelago", "1.0.0.0")] | ||
| 7 | public class Plugin : BasePlugin | ||
| 8 | { | ||
| 9 | public override void Load() | ||
| 10 | { | ||
| 11 | // Plugin startup logic | ||
| 12 | Log.LogInfo($"Plugin {PluginInfo.PLUGIN_GUID} is loaded!"); | ||
| 13 | } | ||
| 14 | } | ||
| 15 | } | ||
