mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-24 17:24:57 +01:00
23 lines
480 B
C++
23 lines
480 B
C++
|
#include "SSpellCastFinishedMsg.h"
|
||
|
namespace BS {
|
||
|
namespace Networking {
|
||
|
void SSpellCastFinishedMsg::Serialize(SerializationBuffer* buf){
|
||
|
buf->SeekZero();
|
||
|
buf->WriteInt(1016);
|
||
|
buf->WriteUInt(this->Guid);
|
||
|
}
|
||
|
void SSpellCastFinishedMsg::Deserialize(SerializationBuffer* buf)
|
||
|
{
|
||
|
this->Guid = buf->ReadUInt();
|
||
|
}
|
||
|
SSpellCastFinishedMsg::SSpellCastFinishedMsg()
|
||
|
{
|
||
|
}
|
||
|
String* SSpellCastFinishedMsg::ToString()
|
||
|
{
|
||
|
return new String(CURRENT_TYPE);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|