mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
9 lines
200 B
C++
9 lines
200 B
C++
#pragma once
|
|
#include <System/System.h>
|
|
#include "MonoBehaviour.h"
|
|
|
|
using namespace UnityEngine;
|
|
using namespace System;
|
|
class BaseWorldSpell : public virtual MonoBehaviour, public virtual Object{
|
|
};
|