Skip to content

Instantly share code, notes, and snippets.

@haniokasai
Last active December 15, 2016 16:08
Show Gist options
  • Save haniokasai/d182b51605ddf949b40a96f3b19a6c87 to your computer and use it in GitHub Desktop.
Save haniokasai/d182b51605ddf949b40a96f3b19a6c87 to your computer and use it in GitHub Desktop.
minetexample
using MiNET.Plugins;
using MiNET.Plugins.Attributes;
using System;
namespace ExamplePlugin
{
[Plugin(PluginName = "ExamplePlugin", Description = "", PluginVersion = "1.0", Author = "haniokasai")]
public class Class1 : Plugin
{
protected override void OnEnable()
{
base.OnEnable();
Console.Write("Loaded");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment