You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
28 lines
409 B
C++
28 lines
409 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "ObjectBase.h"
|
|
|
|
/**
|
|
* Base class for all interfaces
|
|
*
|
|
*/
|
|
|
|
class COREUOBJECT_API UInterface : public UObject
|
|
{
|
|
DECLARE_CLASS_INTRINSIC(UInterface,UObject,CLASS_Interface|CLASS_Abstract,CoreUObject)
|
|
};
|
|
|
|
class COREUOBJECT_API IInterface
|
|
{
|
|
protected:
|
|
|
|
virtual ~IInterface() {}
|
|
|
|
public:
|
|
|
|
typedef UInterface UClassType;
|
|
};
|
|
|