diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-08-22 21:13:33 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2007-08-22 21:13:33 +0000 |
| commit | 0320d20a477e2edbf15f3d961add7c9cd5be7f94 (patch) | |
| tree | 589005b1e64381b5144cf3106c78befdc692deb2 /src/game/client/game_client.cpp | |
| parent | 01fa2a14a22a4be0a735597902d1b136469604a0 (diff) | |
| download | zcatch-0320d20a477e2edbf15f3d961add7c9cd5be7f94.tar.gz zcatch-0320d20a477e2edbf15f3d961add7c9cd5be7f94.zip | |
fixed network hash versioning
Diffstat (limited to 'src/game/client/game_client.cpp')
| -rw-r--r-- | src/game/client/game_client.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/client/game_client.cpp b/src/game/client/game_client.cpp index e5969fcf..2e093308 100644 --- a/src/game/client/game_client.cpp +++ b/src/game/client/game_client.cpp @@ -9,6 +9,7 @@ extern "C" { }; #include "../game.h" +#include "../version.h" #include "mapres_image.h" #include "mapres_tilemap.h" #include "data.h" @@ -2204,3 +2205,6 @@ extern "C" void modc_message(int msg) client_datas[cid].emoticon_start = client_tick(); } } + + +extern "C" const char *modc_net_version() { return TEEWARS_NETVERSION; } |