entity_spell_system/Queued/Messages/SSpellCastFinishedMsg.h

19 lines
408 B
C
Raw Normal View History

2019-04-20 14:02:55 +02:00
#pragma once
#include <System/System.h>
#include "SerializationBuffer.h"
using namespace CxNetworking::Utils;
using namespace System;
namespace BS {
namespace Networking {
struct SSpellCastFinishedMsg : public virtual ValueType
{
uint Guid;
void Serialize(SerializationBuffer* buf);
void Deserialize(SerializationBuffer* buf);
SSpellCastFinishedMsg();
String* ToString();
};
}
}