blob: f40419f88cdf68ea9395360aeee56ca946324b2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package cat.freya.khs.command.location;
/**
* @author bobby29831
*/
public enum Locations {
GAME,
LOBBY,
EXIT,
SEEKER;
public String message() {
return this + "_SPAWN";
}
}
|