mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 19:22:22 +01:00
23 lines
575 B
C++
23 lines
575 B
C++
#pragma once
|
|
|
|
#include "ActorComponent.h"
|
|
|
|
#include "FortAthenaPatrolPath.h"
|
|
|
|
#include "reboot.h"
|
|
|
|
class UFortAthenaNpcPatrollingComponent : public UActorComponent
|
|
{
|
|
public:
|
|
void SetPatrolPath(AFortAthenaPatrolPath* NewPatrolPath)
|
|
{
|
|
static auto SetPatrolPathFn = FindObject<UFunction>(L"/Script/FortniteGame.FortAthenaNpcPatrollingComponent:SetPatrolPath");
|
|
this->ProcessEvent(SetPatrolPathFn, &NewPatrolPath);
|
|
}
|
|
|
|
static UClass* StaticClass()
|
|
{
|
|
static auto Class = FindObject<UClass>(L"/Script/FortniteGame.FortAthenaNpcPatrollingComponent");
|
|
return Class;
|
|
}
|
|
}; |