summaryrefslogtreecommitdiff
path: root/src/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/player.h')
-rw-r--r--src/player.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/player.h b/src/player.h
index d95e535ff..d0e50d2c3 100644
--- a/src/player.h
+++ b/src/player.h
@@ -87,6 +87,7 @@ class Map;
class IGameDef;
struct CollisionInfo;
class PlayerSAO;
+class HudElement;
class Player
{
@@ -242,6 +243,8 @@ public:
}
u32 keyPressed;
+
+ std::vector<HudElement *> hud;
protected:
IGameDef *m_gamedef;
@@ -253,6 +256,7 @@ protected:
v3f m_position;
};
+
/*
Player on the server
*/