1
0
KF2-Dev-Scripts/Engine/Classes/PathNode.uc

27 lines
557 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// PathNode.
// Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
//=============================================================================
class PathNode extends NavigationPoint
placeable
native;
cpptext
{
#if WITH_EDITOR
virtual INT AddMyMarker(AActor *S);
#endif
}
simulated event string GetDebugAbbrev()
{
return "PN";
}
defaultproperties
{
Begin Object NAME=Sprite
Sprite=Texture2D'EditorResources.S_Pickup'
End Object
}