diff options
Diffstat (limited to 'src/engine/packet.h')
| -rw-r--r-- | src/engine/packet.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/engine/packet.h b/src/engine/packet.h index 1700665d..79c969c2 100644 --- a/src/engine/packet.h +++ b/src/engine/packet.h @@ -11,6 +11,10 @@ enum { NETMSG_NULL=0, + // the first thing sent by the client + // contains the version info for the client + NETMSG_INFO=1, + // sent by server NETMSG_MAP, NETMSG_SNAP, @@ -18,7 +22,6 @@ enum NETMSG_SNAPSMALL, // sent by client - NETMSG_INFO, NETMSG_ENTERGAME, NETMSG_INPUT, NETMSG_SNAPACK, |