diff options
Diffstat (limited to 'src/main/java/cat/freya/khs/command/location/Locations.java')
-rw-r--r-- | src/main/java/cat/freya/khs/command/location/Locations.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/java/cat/freya/khs/command/location/Locations.java b/src/main/java/cat/freya/khs/command/location/Locations.java new file mode 100644 index 0000000..f40419f --- /dev/null +++ b/src/main/java/cat/freya/khs/command/location/Locations.java @@ -0,0 +1,17 @@ +package cat.freya.khs.command.location; + +/** + * @author bobby29831 + */ +public enum Locations { + + GAME, + LOBBY, + EXIT, + SEEKER; + + public String message() { + return this + "_SPAWN"; + } + +}
\ No newline at end of file |