Engine
Class LevelSummary

source: C:\XIII\Engine\Classes\LevelSummary.uc
Core.Object
   |
   +--Engine.LevelSummary
Direct Known Subclasses:None

class LevelSummary
extends Core.Object

//============================================================================= // LevelSummary contains the summary properties from the LevelInfo actor. // Designed for fast loading. //=============================================================================
Variables
 string Author
 int IdealPlayerCount
 string LevelEnterText
 string Title


Source Code


00001	//=============================================================================
00002	// LevelSummary contains the summary properties from the LevelInfo actor.
00003	// Designed for fast loading.
00004	//=============================================================================
00005	class LevelSummary extends Object
00006		native;
00007	
00008	//-----------------------------------------------------------------------------
00009	// Properties.
00010	
00011	// From LevelInfo.
00012	var() localized string Title;
00013	var()           string Author;
00014	var() int	IdealPlayerCount;
00015	var() localized string LevelEnterText;
00016	
00017	defaultproperties
00018	{
00019	}

End Source Code