mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
16 lines
282 B
C
16 lines
282 B
C
|
#pragma once
|
||
|
#include <System/System.h>
|
||
|
#include "MonoBehaviour.h"
|
||
|
|
||
|
using namespace UnityEngine;
|
||
|
using namespace System;
|
||
|
class EffectIdAttribute : public virtual MonoBehaviour, public virtual Object
|
||
|
{
|
||
|
private:
|
||
|
int id;
|
||
|
public:
|
||
|
int getId();
|
||
|
public:
|
||
|
void setId(int value);
|
||
|
};
|