mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-04-27 21:55:02 +02:00
20 lines
438 B
C++
20 lines
438 B
C++
#pragma once
|
|
#include <System/System.h>
|
|
#include "SerializationBuffer.h"
|
|
|
|
using namespace CxNetworking::Utils;
|
|
using namespace System;
|
|
namespace BS {
|
|
namespace Networking {
|
|
struct CSendRequestRankDecreaseMsg : public virtual ValueType
|
|
{
|
|
uint Guid;
|
|
int TalentId;
|
|
void Serialize(SerializationBuffer* buf);
|
|
void Deserialize(SerializationBuffer* buf);
|
|
CSendRequestRankDecreaseMsg();
|
|
String* ToString();
|
|
};
|
|
}
|
|
}
|