multiverse.server.objects
Class ObjectTypes

java.lang.Object
  extended by multiverse.server.objects.ObjectTypes

public class ObjectTypes
extends Object

Multiverse object type definitions.


Field Summary
static ObjectType bag
          Object type for bags.
static ObjectType combatInfo
          Object type for combat info.
static ObjectType instance
           
static ObjectType item
          Object type for items.
static ObjectType light
          Object type for lights.
static ObjectType mob
          Object type for mobs (mobile objects).
static ObjectType player
          Object type for players and users.
static ObjectType pointSound
          Object type for point sounds.
static ObjectType road
          Object type for roads.
static ObjectType structure
          Object type for structures and static objects.
static ObjectType terrainDecal
          Object type for terrain decals.
static ObjectType unknown
          The default/fallback object type.
 
Constructor Summary
ObjectTypes()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

unknown

public static final ObjectType unknown
The default/fallback object type.


structure

public static final ObjectType structure
Object type for structures and static objects. Has base type ObjectType.BASE_STRUCTURE.


mob

public static final ObjectType mob
Object type for mobs (mobile objects). Has base type ObjectType.BASE_MOB.


player

public static final ObjectType player
Object type for players and users. Has base types ObjectType.BASE_MOB and ObjectType.BASE_PLAYER.


light

public static final ObjectType light
Object type for lights.


terrainDecal

public static final ObjectType terrainDecal
Object type for terrain decals. Has base type ObjectType.BASE_STRUCTURE.


pointSound

public static final ObjectType pointSound
Object type for point sounds. Has base type ObjectType.BASE_STRUCTURE.


item

public static final ObjectType item
Object type for items.


road

public static final ObjectType road
Object type for roads.


bag

public static final ObjectType bag
Object type for bags.


combatInfo

public static final ObjectType combatInfo
Object type for combat info.


instance

public static final ObjectType instance
Constructor Detail

ObjectTypes

public ObjectTypes()