2016-04-25 20:03:39 +00:00
|
|
|
|
package io.github.norbipeti.thebuttonmc;
|
2015-12-30 12:31:59 +00:00
|
|
|
|
|
|
|
|
|
public class Channel {
|
|
|
|
|
public final String DisplayName;
|
|
|
|
|
public final String Color;
|
|
|
|
|
public final String Command;
|
|
|
|
|
|
|
|
|
|
public Channel(String displayname, String color, String command) {
|
|
|
|
|
DisplayName = displayname;
|
|
|
|
|
Color = color;
|
|
|
|
|
Command = command;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Channel GlobalChat = new Channel("<EFBFBD>fg<EFBFBD>f", "white", "g");
|
|
|
|
|
public static Channel TownChat = new Channel("<EFBFBD>3TC<EFBFBD>f", "dark_aqua", "tc");
|
|
|
|
|
public static Channel NationChat = new Channel("<EFBFBD>6NC<EFBFBD>f", "gold", "nc");
|
2015-12-31 16:32:54 +00:00
|
|
|
|
public static Channel AdminChat = new Channel("<EFBFBD>cADMIN<EFBFBD>f", "red", "a");
|
|
|
|
|
public static Channel ModChat = new Channel("<EFBFBD>9MOD<EFBFBD>f", "blue", "mod");
|
2015-12-30 12:31:59 +00:00
|
|
|
|
}
|