Engine
Class FontInfo

source: c:\runehov\Engine\Classes\FontInfo.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.Info
         |
         +--Engine.FontInfo
Direct Known Subclasses:None

class FontInfo
extends Engine.Info



Function Summary
 font GetStaticBigFont()
 font GetStaticButtonFont()
 font GetStaticCreditsFont()
 font GetStaticLargeFont()
 font GetStaticMedFont()
 font GetStaticRuneMedFont()
 font GetStaticSmallFont()



Source Code


00001	class FontInfo expands Info;
00002	
00003	
00004	static function font GetStaticSmallFont()
00005	{
00006		return Font'SmallFont';
00007	}
00008	
00009	static function font GetStaticMedFont()
00010	{
00011		return Font'MedFont';
00012	}
00013	
00014	static function font GetStaticBigFont()
00015	{
00016		return Font'Haettenschweiler16';
00017	}
00018	
00019	static function font GetStaticLargeFont()
00020	{
00021		return Font'RuneLarge';
00022	}
00023	
00024	static function font GetStaticRuneMedFont()
00025	{
00026		return Font'RuneMed';
00027	}
00028	
00029	static function font GetStaticCreditsFont()
00030	{
00031		return Font'RuneCred';
00032	}
00033	
00034	static function font GetStaticButtonFont()
00035	{
00036		return Font'RuneButton';
00037	}
00038	
00039	defaultproperties
00040	{
00041	}

End Source Code