Files
Project-Reboot-3.0/Project Reboot 3.0/Actor.h
2023-03-11 09:24:00 -05:00

15 lines
309 B
C++

#pragma once
#include "Object.h"
class AActor : public UObject
{
public:
struct FTransform GetTransform();
AActor* GetOwner();
struct FVector GetActorLocation();
struct FVector GetActorRightVector();
void K2_DestroyActor();
class UActorComponent* GetComponentByClass(class UClass* ComponentClass);
};