Chroma-Chat/src/buttondevteam/thebuttonmcchat/Channel.java

25 lines
833 B
Java
Raw Normal View History

package io.github.norbipeti.thebuttonmcchat;
public class Channel {
public final String DisplayName;
2016-06-25 19:05:00 +00:00
public final ChatFormatter.Color Color;
public final String Command;
2016-06-25 19:05:00 +00:00
public Channel(String displayname, ChatFormatter.Color color, String command) {
DisplayName = displayname;
Color = color;
Command = command;
}
2016-06-25 19:05:00 +00:00
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");
}