Created
August 27, 2012 08:50
-
-
Save jonnyli1125/3486749 to your computer and use it in GitHub Desktop.
MCDawn Plugin Format
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 System; | |
namespace MCDawn | |
{ | |
public class PluginName : Plugin | |
{ | |
public override string Name { get { return "pluginname"; } } // name, all in lowercase | |
public override string PluginVersion { get { return "1.0"; } } // version | |
public override string MCDawnVersion { get { return "1.0.1.2"; } } // compatible mcdawn version | |
public override void LoadPlugin() | |
{ | |
// where all the magic happens | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment