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