* there is still a problem/exception with UPDATETYPE_OUT_OF_RANGE_OBJECTS, need to fix this later. * 100% working objects system, now need to add functions to the objects. (made a start with Player/Unit::GetGender())
19 lines
181 B
C++
19 lines
181 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
|