RuneHive-Game
Loading...
Searching...
No Matches
FameType.java
Go to the documentation of this file.
1
package
com.runehive.content.famehall;
2
3
/**
4
* All the hall of fame types.
5
*
6
* @author Daniel
7
*/
8
public
enum
FameType
{
9
/**
10
* Player killing related fame.
11
*/
12
PVP
,
13
14
/**
15
* Monster killing related fame.
16
*/
17
PVM
,
18
19
/**
20
* Skilling related fame.
21
*/
22
SKILL
,
23
24
/**
25
* Miscellaneous fame.
26
*/
27
MISC
28
}
com.runehive.content.famehall.FameType
All the hall of fame types.
Definition
FameType.java:8
com.runehive.content.famehall.FameType.PVP
PVP
Player killing related fame.
Definition
FameType.java:12
com.runehive.content.famehall.FameType.PVM
PVM
Monster killing related fame.
Definition
FameType.java:17
com.runehive.content.famehall.FameType.MISC
MISC
Miscellaneous fame.
Definition
FameType.java:27
com.runehive.content.famehall.FameType.SKILL
SKILL
Skilling related fame.
Definition
FameType.java:22