Chroma-Chat/src/tk/sznp/thebuttonautoflair/Channel.java

20 lines
660 B
Java
Raw Normal View History

package tk.sznp.thebuttonautoflair;
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");
public static Channel AdminChat = new Channel("<EFBFBD>cADMIN<EFBFBD>f", "red", "a");
public static Channel ModChat = new Channel("<EFBFBD>9MOD<EFBFBD>f", "blue", "mod");
}