18 lines
515 B
Java
18 lines
515 B
Java
|
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");
|
|||
|
}
|