RuneHive-Game
Loading...
Searching...
No Matches
PacketType.java
Go to the documentation of this file.
1package com.runehive.net.packet;
2
3/**
4 * Represents a type of packet
5 *
6 * @author nshusa
7 */
8public enum PacketType {
9
11
12 /**
13 * A fixed size packet where the size never changes.
14 */
16
17 /**
18 * A variable packet where the size is indicated by a byte.
19 */
21
22 /**
23 * A variable packet where the size is indicated by a short.
24 */
26
27}
Represents a type of packet.
VAR_SHORT
A variable packet where the size is indicated by a short.
FIXED
A fixed size packet where the size never changes.
VAR_BYTE
A variable packet where the size is indicated by a byte.