Files
UnrealEngine/Engine/Plugins/AI/MassAI/Source/MassAIBehavior/Private/MassZoneGraphAnnotationTrait.cpp
2025-05-18 13:04:45 +08:00

13 lines
483 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MassZoneGraphAnnotationTrait.h"
#include "MassEntityTemplateRegistry.h"
#include "Engine/World.h"
#include "MassZoneGraphAnnotationFragments.h"
void UMassZoneGraphAnnotationTrait::BuildTemplate(FMassEntityTemplateBuildContext& BuildContext, const UWorld& World) const
{
BuildContext.AddFragment<FMassZoneGraphAnnotationFragment>();
BuildContext.AddChunkFragment<FMassZoneGraphAnnotationVariableTickChunkFragment>();
}