diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-05-13 07:16:41 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-05-13 07:16:41 -0600 |
commit | f19d3f4db065472141b9c6bdf63726138006cb14 (patch) | |
tree | 9aee8f8bfda85bbe600c1fd2cbe8c6deba0acf61 /src/localplayer.h | |
parent | 92c331d47a2559b6a820395b95446d4fba3f3eee (diff) | |
download | mana-f19d3f4db065472141b9c6bdf63726138006cb14.tar.gz mana-f19d3f4db065472141b9c6bdf63726138006cb14.tar.bz2 mana-f19d3f4db065472141b9c6bdf63726138006cb14.tar.xz mana-f19d3f4db065472141b9c6bdf63726138006cb14.zip |
Add GM notification handling
Diffstat (limited to 'src/localplayer.h')
-rw-r--r-- | src/localplayer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/localplayer.h b/src/localplayer.h index 39f438d1..add5c049 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -225,6 +225,8 @@ class LocalPlayer : public Player */ virtual void setGM(bool gm); + void setGMLevel(int level); + void stopAttack(); /** @@ -458,6 +460,8 @@ class LocalPlayer : public Player int mHp; int mMaxHp; + int mGMLevel; + Being *mTarget; FloorItem *mPickUpTarget; |