Files
UnrealEngine/Engine/Source/Runtime/ClientPilot/Private/ClientPilotComponent.cpp
2025-05-18 13:04:45 +08:00

23 lines
542 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "ClientPilotComponent.h"
#include "Modules/ModuleManager.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(ClientPilotComponent)
UClientPilotComponent::UClientPilotComponent()
{
}
UClientPilotBlackboard* UClientPilotComponent::GetBlackboardInstance()
{
return UClientPilotBlackboardManager::GetInstance() ? UClientPilotBlackboardManager::GetInstance()->PilotBlackboard : nullptr;
}
void UClientPilotComponent::ThinkAndAct()
{
}
IMPLEMENT_MODULE(FDefaultModuleImpl, ClientPilot);