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