Minestom/src/main/java/net/minestom/server/network/ConnectionState.java

11 lines
216 B
Java
Raw Normal View History

2020-04-24 03:25:58 +02:00
package net.minestom.server.network;
2020-10-12 02:56:30 +02:00
import net.minestom.server.entity.Player;
2020-07-23 07:36:49 +02:00
/**
2020-10-12 02:56:30 +02:00
* Represent the current connection state of a {@link Player}
2020-07-23 07:36:49 +02:00
*/
2020-04-24 03:25:58 +02:00
public enum ConnectionState {
UNKNOWN, STATUS, LOGIN, PLAY
}