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