diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-21 21:25:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-21 21:25:47 +0300 |
commit | c41fcc1f637e76e5ff671b223ce6c151af89e7d3 (patch) | |
tree | ae7afae3d8c30eff4569fc0c41fb8d0ef99ecd94 /src/being/localplayer.h | |
parent | 8b6afd0d756b9fc66c9f4de3ef452c24f64c87d1 (diff) | |
download | plus-c41fcc1f637e76e5ff671b223ce6c151af89e7d3.tar.gz plus-c41fcc1f637e76e5ff671b223ce6c151af89e7d3.tar.bz2 plus-c41fcc1f637e76e5ff671b223ce6c151af89e7d3.tar.xz plus-c41fcc1f637e76e5ff671b223ce6c151af89e7d3.zip |
move "change drop counter" option into gamemodifiers.
Diffstat (limited to 'src/being/localplayer.h')
-rw-r--r-- | src/being/localplayer.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/being/localplayer.h b/src/being/localplayer.h index 4225be4a0..8660efd87 100644 --- a/src/being/localplayer.h +++ b/src/being/localplayer.h @@ -196,13 +196,6 @@ class LocalPlayer final : public Being, int getPickUpType() const A_WARN_UNUSED { return mPickUpType; } - int getQuickDropCounter() const A_WARN_UNUSED - { return mQuickDropCounter; } - - void setQuickDropCounter(const int n); - - void changeQuickDropCounter(const bool forward); - unsigned int getMoveState() const A_WARN_UNUSED { return mMoveState; } @@ -424,8 +417,6 @@ class LocalPlayer final : public Being, void setTestParticle(const std::string &fileName, const bool updateHash = true); - std::string getQuickDropCounterString(); - std::string getPickUpTypeString(); static std::string getMapDrawTypeString(); @@ -500,8 +491,6 @@ class LocalPlayer final : public Being, // crazy move state unsigned int mCrazyMoveState; - // quick drop counter - unsigned int mQuickDropCounter; // move state. used if mMoveType == 2 unsigned int mMoveState; // pick up type 1x1, normal aka 2x1, forward aka 2x3, 3x3, 3x3 + 1 |