mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-24 17:24:57 +01:00
21 lines
428 B
C
21 lines
428 B
C
|
#pragma once
|
||
|
#include <System/System.h>
|
||
|
#include "SerializationBuffer.h"
|
||
|
|
||
|
using namespace CxNetworking::Utils;
|
||
|
using namespace System;
|
||
|
namespace BS {
|
||
|
namespace Networking {
|
||
|
struct CRefreshAuraMsg : public virtual ValueType
|
||
|
{
|
||
|
uint Guid;
|
||
|
int AuraId;
|
||
|
float Time;
|
||
|
void Serialize(SerializationBuffer* buf);
|
||
|
void Deserialize(SerializationBuffer* buf);
|
||
|
CRefreshAuraMsg();
|
||
|
String* ToString();
|
||
|
};
|
||
|
}
|
||
|
}
|