Files
Reboot-Launcher/dependencies/reboot/Project Reboot 3.0/Interface.h
Alessandro Autiero b41e22adeb <feat: New project structure>
<feat: New release>
2023-09-02 15:34:15 +02:00

24 lines
333 B
C++

#pragma once
#include "Object.h"
/**
* Base class for all interfaces
*
*/
class UInterface : public UObject
{
// DECLARE_CLASS_INTRINSIC(UInterface, UObject, CLASS_Interface | CLASS_Abstract, TEXT("/Script/CoreUObject"))
};
class IInterface
{
protected:
virtual ~IInterface() {}
public:
typedef UInterface UClassType;
};