entity_spell_system/Queued/Messages/CResurrectMsg.h
2019-04-20 14:02:55 +02:00

19 lines
392 B
C++

#pragma once
#include <System/System.h>
#include "SerializationBuffer.h"
using namespace CxNetworking::Utils;
using namespace System;
namespace BS {
namespace Networking {
struct CResurrectMsg : public virtual ValueType
{
uint Guid;
void Serialize(SerializationBuffer* buf);
void Deserialize(SerializationBuffer* buf);
CResurrectMsg();
String* ToString();
};
}
}