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

20 lines
298 B
Java
Raw Normal View History

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