entity_spell_system/Queued/ASDef_BSEntities/CooldownSendSyncVar.h
2019-04-20 14:02:55 +02:00

16 lines
284 B
C++

#pragma once
#include <System/System.h>
using namespace System;
namespace BS {
namespace Player {
//Attribute: Serializable*
struct CooldownSendSyncVar : public virtual ValueType{
int spellId;
float cooldown;
CooldownSendSyncVar();
String* ToString();
};
}
}