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

23 lines
468 B
C++

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