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

19 lines
415 B
C++

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