summaryrefslogtreewikicommitdiff
path: root/src/main/java/dev/tylerm/khs/command/location/Locations.java
blob: c3d505c620d0dfb9191b1e22128663164f298410 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package dev.tylerm.khs.command.location;

/**
 * @author bobby29831
 */
public enum Locations {

    GAME,
    LOBBY,
    EXIT,
    SEEKER;

    public String message() {
        return this + "_SPAWN";
    }

}