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

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

    GAME,
    LOBBY,
    EXIT,
    SEEKER;

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

}