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

22 lines
518 B
Ucode

/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*/
/**
* This class is responsible for mapping properties in an Settings
* object to something that the UI system can consume.
*/
class UIDataProvider_Settings extends UIPropertyDataProvider
native(inherit)
transient;
/** Holds the settings object that will be exposed to the UI */
var Settings Settings;
/** Whether this provider is a row in a list (removes array handling) */
var bool bIsAListRow;
defaultproperties
{
}