Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/pets/PetGestures.java

26 lines
427 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.pets;
2019-05-26 20:14:53 +02:00
public enum PetGestures {
2018-07-06 15:30:00 +02:00
THIRSTY("thr"),
TIRED("trd"),
PLAYFULL("plf"),
HUNGRY("hng"),
SAD("sad"),
HAPPY("sml"),
QUESTION("que"),
LVLUP("exp"),
LOVE("lov"),
WARNING("und"),
ENERGY("nrg");
private final String key;
2019-05-26 20:14:53 +02:00
PetGestures(String key) {
2018-07-06 15:30:00 +02:00
this.key = key;
}
2019-05-26 20:14:53 +02:00
public String getKey() {
2018-07-06 15:30:00 +02:00
return this.key;
}
}