mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 11:12:23 +01:00
11 lines
246 B
C++
11 lines
246 B
C++
#include "ActorComponent.h"
|
|
|
|
#include "reboot.h"
|
|
|
|
AActor* UActorComponent::GetOwner()
|
|
{
|
|
auto GetOwnerFn = FindObject<UFunction>(L"/Script/Engine.ActorComponent.GetOwner");
|
|
AActor* Owner;
|
|
this->ProcessEvent(GetOwnerFn, &Owner);
|
|
return Owner;
|
|
} |