Last active
December 15, 2016 16:08
-
-
Save haniokasai/d182b51605ddf949b40a96f3b19a6c87 to your computer and use it in GitHub Desktop.
minetexample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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