summaryrefslogtreecommitdiff
path: root/src/monster.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/monster.h')
-rw-r--r--src/monster.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/monster.h b/src/monster.h
index 0906dff3..cb8f7f18 100644
--- a/src/monster.h
+++ b/src/monster.h
@@ -75,8 +75,12 @@ class Monster : public Being
* Update the text when the monster moves
*/
void updateCoords();
+
private:
- Text *mText; /**< holds a text object when the mod displays it's name, 0 otherwise */
+ /**
+ * holds a text object when the mod displays it's name, 0 otherwise
+ */
+ Text *mText;
};
#endif