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

29 lines
435 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
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;
}
}