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