diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-12 08:47:15 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-12 08:47:15 -0500 |
commit | ba7df965e73e121820f20e3a0e57631d078c11db (patch) | |
tree | 75f09a352be19c369f7bd02e279a275322634d67 /include/inventory.h | |
parent | 3033594b89f23e65b6152daa6610f991307f2f67 (diff) |
more saving/loading
Diffstat (limited to 'include/inventory.h')
-rw-r--r-- | include/inventory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inventory.h b/include/inventory.h index af859a5..8225ab2 100644 --- a/include/inventory.h +++ b/include/inventory.h @@ -31,10 +31,10 @@ struct item_t{ class Inventory { private: - std::vector<item_t> items; unsigned int size; int os = 0; public: + std::vector<item_t> items; unsigned int sel; bool invOpen = false; bool invOpening = false; |