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