summaryrefslogtreewikicommitdiff
path: root/src/main/java/cat/freya/khs/command/location/Locations.java
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-09-06 23:11:25 -0400
committerFreya Murphy <freya@freyacat.org>2025-09-06 23:11:25 -0400
commit67aba9081bb73aeaa822b059e8ca6defc8352a2f (patch)
treecba7c5c8c9a0286b491b0b0784a27730ce58696e /src/main/java/cat/freya/khs/command/location/Locations.java
parentadd wiki for cgit (diff)
downloadkenshinshideandseek-67aba9081bb73aeaa822b059e8ca6defc8352a2f.tar.gz
kenshinshideandseek-67aba9081bb73aeaa822b059e8ca6defc8352a2f.tar.bz2
kenshinshideandseek-67aba9081bb73aeaa822b059e8ca6defc8352a2f.zip
rename pacakges dev.tylerm -> cat.freya
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.java17
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