Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

17 lines
367 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "NavAreas/NavArea_LowHeight.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(NavArea_LowHeight)
UNavArea_LowHeight::UNavArea_LowHeight(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
DefaultCost = BIG_NUMBER;
DrawColor = FColor(0, 0, 128);
// can't traverse
AreaFlags = 0;
}