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