19 lines
163 B
C++
19 lines
163 B
C++
#ifndef _BAG_H
|
|
#define _BAG_H
|
|
|
|
#include "common.h"
|
|
#include "Item.h"
|
|
|
|
class Bag : public Item
|
|
{
|
|
public:
|
|
Bag();
|
|
void Create(uint64);
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
#endif
|