Files
Project-Reboot-3.0/Project Reboot 3.0/Actor.h
2023-03-05 14:01:15 -05:00

13 lines
195 B
C++

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