RuneHive-Game
Loading...
Searching...
No Matches
EntityType.java
Go to the documentation of this file.
1
package
com.runehive.game.world.entity;
2
3
public
enum
EntityType
{
4
5
PLAYER
,
6
7
NPC
,
8
9
PROJECTILE
,
10
11
STATIC_OBJECT
,
12
13
CUSTOM_OBJECT
,
14
15
GROUND_ITEM
,
16
17
DWARF_CANNON
18
19
}
com.runehive.game.world.entity.EntityType
Definition
EntityType.java:3
com.runehive.game.world.entity.EntityType.NPC
NPC
Definition
EntityType.java:7
com.runehive.game.world.entity.EntityType.PLAYER
PLAYER
Definition
EntityType.java:5
com.runehive.game.world.entity.EntityType.GROUND_ITEM
GROUND_ITEM
Definition
EntityType.java:15
com.runehive.game.world.entity.EntityType.PROJECTILE
PROJECTILE
Definition
EntityType.java:9
com.runehive.game.world.entity.EntityType.STATIC_OBJECT
STATIC_OBJECT
Definition
EntityType.java:11
com.runehive.game.world.entity.EntityType.CUSTOM_OBJECT
CUSTOM_OBJECT
Definition
EntityType.java:13
com.runehive.game.world.entity.EntityType.DWARF_CANNON
DWARF_CANNON
Definition
EntityType.java:17