Skip to content

Instantly share code, notes, and snippets.

@jonnyli1125
Created August 27, 2012 08:50
Show Gist options
  • Save jonnyli1125/3486749 to your computer and use it in GitHub Desktop.
Save jonnyli1125/3486749 to your computer and use it in GitHub Desktop.
MCDawn Plugin Format
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