Guest User

Untitled

a guest
Dec 21st, 2021
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Inventory
  2. {
  3. private:
  4. std::vector<std::unique_ptr<Item>> gameInventory;
  5. std::vector<std::unique_ptr<Item>> playerInventory;
  6. public:
  7. Inventory();
  8. virtual ~Inventory();
Advertisement
Add Comment
Please, Sign In to add comment