RuneHive-Game
Loading...
Searching...
No Matches
ChatColor.java
Go to the documentation of this file.
1package com.runehive.game.world.entity.mob.player.relations;
2
3public enum ChatColor {
4
6 RED(1),
7 GREEN(2),
8 CYAN(3),
15 GLOW_2(10),
16 GLOW_3(11);
17
18 private final int code;
19
21 this.code = code;
22 }
23
24 public int getCode() {
25 return code;
26 }
27
28 public static final ChatColor[] values = values();
29
30}