Files
UnrealEngine/Engine/Source/Runtime/AIModule/Classes/DetourCrowdAIController.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

22 lines
490 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "UObject/UObjectGlobals.h"
#include "AIController.h"
#include "DetourCrowdAIController.generated.h"
#define UE_API AIMODULE_API
UCLASS(MinimalAPI)
class ADetourCrowdAIController : public AAIController
{
GENERATED_BODY()
public:
UE_API ADetourCrowdAIController(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get());
};
#undef UE_API