Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/users/DanceType.java

23 lines
306 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.users;
public enum DanceType
{
NONE(0),
HAB_HOP(1),
POGO_MOGO(2),
DUCK_FUNK(3),
THE_ROLLIE(4);
private final int type;
DanceType(int type)
{
this.type = type;
}
public int getType()
{
return this.type;
}
}