20 lines
298 B
C
20 lines
298 B
C
|
#ifndef __HOMEBOX_H__
|
||
|
#define __HOMEBOX_H__
|
||
|
|
||
|
#include <list>
|
||
|
#include <string>
|
||
|
|
||
|
class HomeBox {
|
||
|
public:
|
||
|
class Item {
|
||
|
public:
|
||
|
int id = -1;
|
||
|
std::string name;
|
||
|
std::string location;
|
||
|
int cost;
|
||
|
};
|
||
|
|
||
|
using Items = std::list<Item>;
|
||
|
};
|
||
|
|
||
|
#endif // __HOMEBOX_H__
|