RuneHive-Game
Loading...
Searching...
No Matches
AchievementType.java
Go to the documentation of this file.
1package com.runehive.content.achievement;
2
3/**
4 * The types of achievement types.
5 *
6 * @author Daniel
7 */
8public enum AchievementType {
9 PVP(0xE83838, "PvP"),
10 PVM(0xDB8E3B, "PvM"),
11 SKILLING(0x5CC947, "Skilling"),
12 MINIGAME(0x4285E3, "Minigame"),
13 MISCELLANEOUS(0xAE47ED, "Misc.");
14
15 private final String title;
16 private final int color;
17
19 this.title = title;
20 this.color = color;
21 }
22
23 public String getTitle() {
24 return title;
25 }
26
27 public int getColor() {
28 return color;
29 }
30}