15 lines
215 B
C++
15 lines
215 B
C++
#include "Bag.h"
|
|
|
|
Bag::Bag() : Item()
|
|
{
|
|
_type |= TYPE_CONTAINER;
|
|
_typeid = TYPEID_CONTAINER;
|
|
_valuescount = CONTAINER_END;
|
|
_slot = 0;
|
|
}
|
|
|
|
void Bag::Create(uint64 guid)
|
|
{
|
|
Item::Create(guid);
|
|
}
|