How to use UINTERFACE, convert the UInterface to IInterface?

#Ignore UInterface

Just use InterfaceCast<>

:slight_smile:

The UInterface is meant only to be a wrapper for the IInterface

do multiple inheritance with IInterface

Ignore UInterface, it is not meant to have functionality of its own :slight_smile:

The comment in the Source code during the Beta went something like this

"/** Class needed to support InterfaceCast<>"

It is just a support structure, the real core is all in the IInterface :slight_smile:

Rama