mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-04-27 21:55:02 +02:00
23 lines
462 B
C++
23 lines
462 B
C++
#include "SSendSentItemsMsg.h"
|
|
namespace BS {
|
|
namespace Networking {
|
|
void SSendSentItemsMsg::Serialize(SerializationBuffer* buf){
|
|
buf->SeekZero();
|
|
buf->WriteInt(1048);
|
|
buf->WriteString(this->Items);
|
|
}
|
|
void SSendSentItemsMsg::Deserialize(SerializationBuffer* buf)
|
|
{
|
|
this->Items = buf->ReadString();
|
|
}
|
|
SSendSentItemsMsg::SSendSentItemsMsg()
|
|
{
|
|
}
|
|
String* SSendSentItemsMsg::ToString()
|
|
{
|
|
return new String(CURRENT_TYPE);
|
|
}
|
|
|
|
}
|
|
}
|