diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-03-24 23:10:51 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-03-25 11:31:55 -0600 |
commit | bf6cb46d9b06b06470efd5ad3ebae7e274f6906f (patch) | |
tree | 281cdf6d017477f07e02e73acef175f937c18eed /src/localplayer.h | |
parent | 83077364f8b67fb9fc57e8b04a1feff0e243848d (diff) | |
download | mana-bf6cb46d9b06b06470efd5ad3ebae7e274f6906f.tar.gz mana-bf6cb46d9b06b06470efd5ad3ebae7e274f6906f.tar.bz2 mana-bf6cb46d9b06b06470efd5ad3ebae7e274f6906f.tar.xz mana-bf6cb46d9b06b06470efd5ad3ebae7e274f6906f.zip |
Eliminate the logic methods from InventoryWindow and StorageWindow
Diffstat (limited to 'src/localplayer.h')
-rw-r--r-- | src/localplayer.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/localplayer.h b/src/localplayer.h index dce83ccd..c97bfc4b 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -302,14 +302,12 @@ class LocalPlayer : public Player int getTotalWeight() const { return mTotalWeight; } - void setTotalWeight(int value) - { mTotalWeight = value; } + void setTotalWeight(int value); int getMaxWeight() const { return mMaxWeight; } - void setMaxWeight(int value) - { mMaxWeight = value; } + void setMaxWeight(int value); int getAttributeBase(int num) { return mAttributeBase[num]; } |