1
0
KF2-Dev-Scripts/UnrealEd/Classes/CurveEdPreset_Nothing.uc
2020-12-13 18:01:13 +03:00

28 lines
423 B
Ucode

/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
class CurveEdPreset_Nothing extends CurveEdPresetBase
native
editinlinenew
hidecategories(Object);
/** Virtual function to get the user-readable name for the curve */
function string GetDisplayName()
{
local string RetVal;
RetVal = "Do not preset";
return RetVal;
}
/** */
cpptext
{
}
/** */
defaultproperties
{
}