Interfaces
Exposing C# Interfaces to Unreal
[UInterface]
public interface IInteractable
{
[UFunction(FunctionFlags.BlueprintEvent)]
public bool OnInteract();
[UFunction(FunctionFlags.BlueprintEvent)]
public bool StopInteract();
}Last updated