24 lines
784 B
Ucode
24 lines
784 B
Ucode
//=============================================================================
|
|
// LevelSummary contains the summary properties from the LevelInfo actor.
|
|
// Designed for fast loading.
|
|
//=============================================================================
|
|
class LevelSummary extends Object
|
|
native;
|
|
|
|
var(LevelSummary) localized String Title;
|
|
var(LevelSummary) localized String Description;
|
|
var() localized string LevelEnterText;
|
|
|
|
var(LevelSummary) String Author;
|
|
var(LevelSummary) String DecoTextName;
|
|
|
|
var(LevelSummary) int IdealPlayerCountMin;
|
|
var(LevelSummary) int IdealPlayerCountMax;
|
|
|
|
var(LevelSummary) bool HideFromMenus;
|
|
var(SinglePlayer) int SinglePlayerTeamSize;
|
|
|
|
var(LevelSummary) Material Screenshot;
|
|
var(LevelSummary) string ExtraInfo;
|
|
|