diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-09-17 19:12:03 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-09-17 19:12:03 +0000 |
commit | 7eaa123ee5129ccd81ff169ada7665a812dee435 (patch) | |
tree | 7a79b06c55553671ea3b0a872b87e324cd772cb8 | |
parent | 61d3af6bda1a4bae3e9bb7b21f4cf41143407927 (diff) | |
download | mana-7eaa123ee5129ccd81ff169ada7665a812dee435.tar.gz mana-7eaa123ee5129ccd81ff169ada7665a812dee435.tar.bz2 mana-7eaa123ee5129ccd81ff169ada7665a812dee435.tar.xz mana-7eaa123ee5129ccd81ff169ada7665a812dee435.zip |
Remove inclusion of being.h, there was a forward declaration anyways...
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/game.h | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,5 @@ 2005-09-17 Matthias Hartmann <hartmann.matthias@gmail.com> - * src/engine.cpp: [TARGET] text over player * src/game.cpp: PVP * src/game.h: PVP @@ -13,6 +12,8 @@ 2005-09-17 Björn Steinbrink <B.Steinbrink@gmx.de> + * src/game.h: Remove inclusion of being.h, there was a forward + declaration of class Being anyways... * src/openglgraphics.cpp: Use gl{Push,Pop}Matrix instead of calculating offsets, cause the values are stored as float and aren't accurate enough. @@ -25,7 +25,6 @@ #define _TMW_GAME_ #include <iosfwd> -#include "being.h" #define SPEECH_TIME 80 #define SPEECH_MAX_TIME 100 @@ -34,6 +33,7 @@ #define IDLE 255 class Being; + extern std::string map_path; extern std::string tradePartnerName; extern int fps, frame, current_npc; |