mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-04-27 21:55:02 +02:00
23 lines
468 B
C++
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);
|
|
}
|
|
|
|
}
|
|
}
|