diff options
| author | Fujnky <larsfunke1996@gmail.com> | 2010-06-03 17:47:32 +0200 |
|---|---|---|
| committer | Fujnky <larsfunke1996@gmail.com> | 2010-06-03 17:47:32 +0200 |
| commit | 5849aeb86c5ae41fc83e6f8e5583b65a117d7114 (patch) | |
| tree | 0801cb063a54c94fd9f142f328476330849eb7e8 /src/game/server/entities/character.h | |
| parent | 5a641132e7d445157434b8af0c73947d2cef987f (diff) | |
| parent | a6ab379e67f712524635cac1c8131314933b8f59 (diff) | |
| download | zcatch-5849aeb86c5ae41fc83e6f8e5583b65a117d7114.tar.gz zcatch-5849aeb86c5ae41fc83e6f8e5583b65a117d7114.zip | |
Merge branch 'master' of git://github.com/matricks/teeworlds
Conflicts: src/game/server/gamemodes/ctf.cpp
Diffstat (limited to 'src/game/server/entities/character.h')
| -rw-r--r-- | src/game/server/entities/character.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/server/entities/character.h b/src/game/server/entities/character.h index 30c6586f..a1add982 100644 --- a/src/game/server/entities/character.h +++ b/src/game/server/entities/character.h @@ -7,9 +7,6 @@ #include <game/gamecore.h> -//character's size -const int g_CharPhysSize = 28; - enum { WEAPON_GAME = -3, // team switching etc @@ -22,6 +19,9 @@ class CCharacter : public CEntity MACRO_ALLOC_POOL_ID() public: + //character's size + static const int ms_PhysSize = 28; + CCharacter(CGameWorld *pWorld); virtual void Reset(); |