diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-08-04 18:23:26 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-08-04 18:23:26 +0000 |
| commit | 1eadf9942ad07ba3c60f9a027cf232a351fa9b05 (patch) | |
| tree | 0c513cbd05f37049c40c2a199d44020202134f73 /src/engine/packet.h | |
| parent | c89e2d0dc89fec398f111807013b1091322f6f51 (diff) | |
| download | zcatch-1eadf9942ad07ba3c60f9a027cf232a351fa9b05.tar.gz zcatch-1eadf9942ad07ba3c60f9a027cf232a351fa9b05.zip | |
fixed handling of versions. added error messages when disconnected. updated the connecting gui. fixed no streched clouds
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, |