#ifndef __HOMEBOX_H__ #define __HOMEBOX_H__ #include #include class HomeBox { public: class Item { public: int id = -1; std::string name; std::string location; int cost; }; using Items = std::list; }; #endif // __HOMEBOX_H__