Chroma-Chat/src/main/java/buttondevteam/chat/Channel.java
2016-09-11 17:35:39 +02:00

26 lines
871 B
Java

package buttondevteam.chat;
import buttondevteam.chat.formatting.ChatFormatter;
public class Channel {
public final String DisplayName;
public final ChatFormatter.Color Color;
public final String Command;
public Channel(String displayname, ChatFormatter.Color color, String command) {
DisplayName = displayname;
Color = color;
Command = command;
}
public static Channel GlobalChat = new Channel("§fg§f",
ChatFormatter.Color.White, "g");
public static Channel TownChat = new Channel("§3TC§f",
ChatFormatter.Color.DarkAqua, "tc");
public static Channel NationChat = new Channel("§6NC§f",
ChatFormatter.Color.Gold, "nc");
public static Channel AdminChat = new Channel("§cADMIN§f",
ChatFormatter.Color.Red, "a");
public static Channel ModChat = new Channel("§9MOD§f",
ChatFormatter.Color.Blue, "mod");
}