Files
Project-Reboot-3.0/Project Reboot 3.0/FortAthenaAIBotController.h
2024-03-19 13:11:02 -04:00

14 lines
274 B
C++

#pragma once
#include "reboot.h"
#include "AIController.h"
class AFortAthenaAIBotController : public AAIController
{
public:
static UClass* StaticClass()
{
static auto Class = FindObject<UClass>(L"/Script/FortniteGame.FortAthenaAIBotController");
return Class;
}
};