summaryrefslogtreecommitdiff
path: root/src/localplayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/localplayer.h')
-rw-r--r--src/localplayer.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/localplayer.h b/src/localplayer.h
index 4e0b205f..55e12bf1 100644
--- a/src/localplayer.h
+++ b/src/localplayer.h
@@ -22,6 +22,8 @@
#ifndef LOCALPLAYER_H
#define LOCALPLAYER_H
+#include <vector>
+
#include "player.h"
#include "simpleanimation.h"
@@ -235,6 +237,9 @@ class LocalPlayer : public Player
SimpleAnimation *mTargetCursorOutRange[NUM_TC];
protected:
+ virtual void
+ handleStatusEffect(StatusEffect *effect, int effectId);
+
void walk(unsigned char dir);
int mXp; /**< Experience points. */
@@ -254,6 +259,8 @@ class LocalPlayer : public Player
int mDestX; /**< X coordinate of destination. */
int mDestY; /**< Y coordinate of destination. */
+ std::vector<int> mStatusEffectIcons;
+
Inventory *mInventory;
Inventory *mStorage;