RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
AchievementType.java
1package com.osroyale.content.achievement;
2
31
32public enum AchievementType {
33 PVP(0xE83838, "PvP"),
34 PVM(0xDB8E3B, "PvM"),
35 SKILLING(0x5CC947, "Skilling"),
36 MINIGAME(0x4285E3, "Minigame"),
37 MISCELLANEOUS(0xAE47ED, "Misc.");
38
39 private final String title;
40 private final int color;
41
42 AchievementType(int color, String title) {
43 this.title = title;
44 this.color = color;
45 }
46
47 public String getTitle() {
48 return title;
49 }
50
51 public int getColor() {
52 return color;
53 }
54}