14 lines
197 B
C++
14 lines
197 B
C++
#include "Corpse.h"
|
|
|
|
Corpse::Corpse()
|
|
{
|
|
_type=TYPE_CORPSE;
|
|
_typeid=TYPEID_CORPSE;
|
|
_valuescount=CORPSE_END;
|
|
}
|
|
|
|
void Corpse::Create(uint64 guid)
|
|
{
|
|
Object::Create(guid);
|
|
}
|