diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-09-27 22:35:38 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-09-27 22:35:38 +0300 |
commit | 9429dc4f5b5b6102a8b575de25ce5d8e7170551f (patch) | |
tree | d4603ddbea06f75e8637a1ff94da4432d7b96951 /src/being/localplayer.h | |
parent | 64d30eda264c342aced8d791b47a35def0e4d15c (diff) | |
download | plus-9429dc4f5b5b6102a8b575de25ce5d8e7170551f.tar.gz plus-9429dc4f5b5b6102a8b575de25ce5d8e7170551f.tar.bz2 plus-9429dc4f5b5b6102a8b575de25ce5d8e7170551f.tar.xz plus-9429dc4f5b5b6102a8b575de25ce5d8e7170551f.zip |
Change player job level, exp from stat object to attribute.
Diffstat (limited to 'src/being/localplayer.h')
-rw-r--r-- | src/being/localplayer.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/being/localplayer.h b/src/being/localplayer.h index 9af5b9d3c..897e4dc00 100644 --- a/src/being/localplayer.h +++ b/src/being/localplayer.h @@ -34,7 +34,6 @@ #include "listeners/actorspritelistener.h" #include "listeners/attributelistener.h" #include "listeners/playerdeathlistener.h" -#include "listeners/statlistener.h" #include "localconsts.h" @@ -50,8 +49,7 @@ class OkDialog; class LocalPlayer final : public Being, public ActorSpriteListener, public AttributeListener, - public PlayerDeathListener, - public StatListener + public PlayerDeathListener { public: /** @@ -402,10 +400,6 @@ class LocalPlayer final : public Being, const int64_t oldVal, const int64_t newVal) override final; - void statChanged(const AttributesT id, - const int oldVal1, - const int oldVal2) override final; - void updateMusic() const; void setAfkTime(const int v) noexcept2 |