Navigation
API > API/Runtime > API/Runtime/Engine
This is the base class for the various platform interface classes and has support for a generic delegate system, as well has having subclasses determine if they should register for a tick. An enum for the types of data used in a PlatformInterfaceData struct.
| Name | EPlatformInterfaceDataType |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/PlatformInterfaceBase.h |
| Include Path | #include "Engine/PlatformInterfaceBase.h" |
Syntax
enum EPlatformInterfaceDataType
{
PIDT_None,
PIDT_Int,
PIDT_Float,
PIDT_String,
PIDT_Object,
PIDT_Custom,
PIDT_MAX,
}
Values
| Name | Remarks |
|---|---|
| PIDT_None | No data type specified. |
| PIDT_Int | |
| PIDT_Float | |
| PIDT_String | |
| PIDT_Object | |
| PIDT_Custom | A custom type where more than one value may be filled out. |
| PIDT_MAX |