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

26 lines
427 B
Java

package com.eu.habbo.habbohotel.pets;
public enum PetGestures {
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;
PetGestures(String key) {
this.key = key;
}
public String getKey() {
return this.key;
}
}