diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-08 18:40:48 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-03-08 18:40:48 -0600 |
commit | 6099a24784843ac2c6eb4036f5c08bba2f9299c3 (patch) | |
tree | 7bc6684986ec10d9fa241b98b9a27e511233cc63 /src/localplayer.h | |
parent | 989be6b1e7634726f5f49e19d6e7dabad7c793e6 (diff) | |
download | mana-client-6099a24784843ac2c6eb4036f5c08bba2f9299c3.tar.gz mana-client-6099a24784843ac2c6eb4036f5c08bba2f9299c3.tar.bz2 mana-client-6099a24784843ac2c6eb4036f5c08bba2f9299c3.tar.xz mana-client-6099a24784843ac2c6eb4036f5c08bba2f9299c3.zip |
Add an interface for eAthena's storage system
Diffstat (limited to 'src/localplayer.h')
-rw-r--r-- | src/localplayer.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/localplayer.h b/src/localplayer.h index ba6e7670..ce181c74 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -30,9 +30,6 @@ // TODO move into some sane place... #define MAX_SLOT 2 -#define INVENTORY_SIZE 102 -#define STORAGE_SIZE 301 - class Equipment; class FloorItem; class ImageSet; @@ -194,7 +191,7 @@ class LocalPlayer : public Player * Accessors for mInStorage */ bool getInStorage() { return mInStorage; } - void setInStorage(bool inStorage) { mInStorage = inStorage; } + void setInStorage(bool inStorage); /** * Sets the amount of XP. Shows XP gaining effect if the player is on |