Files
UnrealEngine/Engine/Plugins/AI/MassAI/Source/MassAIBehavior/Private/MassZoneGraphAnnotationTrait.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

15 lines
555 B
C++

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