Files
Project-Reboot-3.0/Project Reboot 3.0/Actor.h
Milxnor 7d136f2b8b legacy
fixed pickaxes with mcp, 1.11 fixed
2023-04-02 00:30:06 -04:00

30 lines
782 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);
float GetDistanceTo(AActor* OtherActor);
struct FRotator GetActorRotation();
void FlushNetDormancy();
bool TeleportTo(const FVector& DestLocation, const FRotator& DestRotation);
bool IsActorBeingDestroyed();
bool IsNetStartup();
bool IsAlwaysRelevant();
bool UsesOwnerRelevancy();
bool IsOnlyRelevantToOwner();
bool CanBeDamaged();
void SetCanBeDamaged(bool NewValue);
void SetOwner(AActor* Owner);
void ForceNetUpdate();
static class UClass* StaticClass();
};