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

22 lines
700 B
Ucode

/**
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
*
* Per object config provider that exposes dynamic playlists to the UI system
*/
class OnlinePlaylistProvider extends UIResourceDataProvider
native(inherit)
PerObjectConfig
Config(Playlist);
/** Unique identifier for this Playlist */
var config int PlaylistId;
/** List of the names of the OnlinePlaylistGameTypeProvider for the game modes supported by this playlist */
var config array<Name> PlaylistGameTypeNames;
/** Localized display name for the playlist */
var config localized string DisplayName;
/** Value to determine sorting priority (highest is first in the list) */
var config int Priority;