Files
Project-Reboot-3.0/Project Reboot 3.0/ScriptInterface.h
2023-03-11 23:30:19 -05:00

20 lines
274 B
C++

#pragma once
#include "Object.h"
class FScriptInterface
{
public:
UObject* ObjectPointer;
void* InterfacePointer;
FORCEINLINE UObject*& GetObjectRef()
{
return ObjectPointer;
}
};
template<class InterfaceType>
class TScriptInterface : public FScriptInterface
{
};