439b2e9ef8
Added json configs for management server Cleaned up some files
23 lines
299 B
Kotlin
23 lines
299 B
Kotlin
package ms.net.packet
|
|
|
|
/**
|
|
* Represents the types of packet headers.
|
|
* @author Emperor
|
|
*/
|
|
enum class PacketHeader {
|
|
|
|
/**
|
|
* The normal packet header.
|
|
*/
|
|
NORMAL,
|
|
|
|
/**
|
|
* The byte packet header.
|
|
*/
|
|
BYTE,
|
|
|
|
/**
|
|
* The short packet header.
|
|
*/
|
|
SHORT
|
|
} |