24 lines
612 B
C++
24 lines
612 B
C++
// © 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
|
|
};
|