entity_spell_system/Queued/Messages/CResurrectMsg.cpp
2019-04-20 14:02:55 +02:00

23 lines
432 B
C++

#include "CResurrectMsg.h"
namespace BS {
namespace Networking {
void CResurrectMsg::Serialize(SerializationBuffer* buf){
buf->SeekZero();
buf->WriteInt(1025);
buf->WriteUInt(this->Guid);
}
void CResurrectMsg::Deserialize(SerializationBuffer* buf)
{
this->Guid = buf->ReadUInt();
}
CResurrectMsg::CResurrectMsg()
{
}
String* CResurrectMsg::ToString()
{
return new String(CURRENT_TYPE);
}
}
}