Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/users/DanceType.java
2019-05-26 21:15:26 +03:00

20 lines
298 B
Java

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;
}
}