mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
25 lines
510 B
C++
25 lines
510 B
C++
#include "CAuraRemovedMsg.h"
|
|
namespace BS {
|
|
namespace Networking {
|
|
void CAuraRemovedMsg::Serialize(SerializationBuffer* buf){
|
|
buf->SeekZero();
|
|
buf->WriteInt(1033);
|
|
buf->WriteUInt(this->Guid);
|
|
buf->WriteInt(this->AuraId);
|
|
}
|
|
void CAuraRemovedMsg::Deserialize(SerializationBuffer* buf)
|
|
{
|
|
this->Guid = buf->ReadUInt();
|
|
this->AuraId = buf->ReadInt();
|
|
}
|
|
CAuraRemovedMsg::CAuraRemovedMsg()
|
|
{
|
|
}
|
|
String* CAuraRemovedMsg::ToString()
|
|
{
|
|
return new String(CURRENT_TYPE);
|
|
}
|
|
|
|
}
|
|
}
|