Older/Server/Database/HomeBox.h

20 lines
298 B
C
Raw Normal View History

2024-07-10 22:37:40 +08:00
#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__