RuneHive-Game
Loading...
Searching...
No Matches
TeleportType.java
Go to the documentation of this file.
1
package
com.runehive.content.skill.impl.magic.teleport;
2
3
/**
4
* The teleport types.
5
*
6
* @author Daniel
7
*/
8
public
enum
TeleportType
{
9
/** Favorite teleport. */
10
FAVORITES
,
11
12
/** Activity teleport. */
13
MINIGAMES
,
14
15
/** Skilling teleport. */
16
SKILLING
,
17
18
/** Monster killing teleport. */
19
MONSTER_KILLING
,
20
21
/** Player killing teleport. */
22
PLAYER_KILLING
,
23
24
/** Boss killing teleport. */
25
BOSS_KILLING
,
26
}
com.runehive.content.skill.impl.magic.teleport.TeleportType
The teleport types.
Definition
TeleportType.java:8
com.runehive.content.skill.impl.magic.teleport.TeleportType.MINIGAMES
MINIGAMES
Activity teleport.
Definition
TeleportType.java:13
com.runehive.content.skill.impl.magic.teleport.TeleportType.FAVORITES
FAVORITES
Favorite teleport.
Definition
TeleportType.java:10
com.runehive.content.skill.impl.magic.teleport.TeleportType.BOSS_KILLING
BOSS_KILLING
Boss killing teleport.
Definition
TeleportType.java:25
com.runehive.content.skill.impl.magic.teleport.TeleportType.PLAYER_KILLING
PLAYER_KILLING
Player killing teleport.
Definition
TeleportType.java:22
com.runehive.content.skill.impl.magic.teleport.TeleportType.MONSTER_KILLING
MONSTER_KILLING
Monster killing teleport.
Definition
TeleportType.java:19
com.runehive.content.skill.impl.magic.teleport.TeleportType.SKILLING
SKILLING
Skilling teleport.
Definition
TeleportType.java:16