Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/pets/PetGestures.java
2018-07-06 13:30:00 +00:00

29 lines
435 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;
}
}