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; | |
| using MCGalaxy; | |
| namespace Core { | |
| public class Announce: Plugin { | |
| public override string MCGalaxy_Version { get { return "1.8.0.0"; } } | |
| public override string name { get { return "Announce"; } } | |
| public override void Load(bool startup) { | |
| Command.Register(new CmdAnnounce()); |
OlderNewer