8 lines
175 B
Java
8 lines
175 B
Java
package network.protocol;
|
|
|
|
public enum Packets {
|
|
|
|
ConnectionInfo, KeepAlive, Disconnect, Login, PlayerJoin, PlayerLeave, StartGame, ChangeCell, EndGame, UpdatePlayerScore
|
|
|
|
}
|