Classes
To make a C# class visible to Unreal Engine’s reflection system (and therefore Blueprint and the gameplay framework), the class must:
[UClass]
public partial class AMyShowcaseClass : AActor
{
public override void BeginPlay()
{
base.BeginPlay();
}
}
Last updated