home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / Engine / Classes / LevelSummary.uc < prev    next >
Text File  |  2003-06-23  |  593b  |  20 lines

  1. //=============================================================================
  2. // LevelSummary contains the summary properties from the LevelInfo actor.
  3. // Designed for fast loading.
  4. //=============================================================================
  5. class LevelSummary extends Object
  6.     native;
  7.  
  8. //-----------------------------------------------------------------------------
  9. // Properties.
  10.  
  11. // From LevelInfo.
  12. var() localized string Title;
  13. var()           string Author;
  14. var() int    IdealPlayerCount;
  15. var() localized string LevelEnterText;
  16.  
  17. defaultproperties
  18. {
  19. }
  20.