OLS/Source/ols/Public/ModularGameplayActors/OLSModularAIController.h

24 lines
612 B
C
Raw Normal View History

2025-01-04 16:41:49 +00:00
// © 2024 Long Ly. All rights reserved. Any unauthorized use, reproduction, or distribution of this trademark is strictly prohibited and may result in legal action.
#pragma once
#include "AIController.h"
#include "OLSModularAIController.generated.h"
/**
*
*/
UCLASS(Blueprintable)
class OLS_API AOLSModularAIController : public AAIController
{
GENERATED_BODY()
public:
// -- Begin Actor implementation
virtual void PreInitializeComponents() override;
virtual void BeginPlay() override;
virtual void EndPlay(const EEndPlayReason::Type endPlayReason) override;
// -- End Actor Implementation
};