UE5では、*(ポインタ)ではなく、TObjectPtrを使用することが推奨されています。

USceneComponent* DefaultSceneRoot;
// 下が推奨
TObjectPtr<USceneComponent> DefaultSceneRoot;