RMenu
Class RMenuModItem

source: c:\runehov\RMenu\Classes\RMenuModItem.uc
Core.Object
   |
   +--UWindow.UWindowBase
      |
      +--UWindow.UWindowList
         |
         +--RMenu.RMenuModItem
Direct Known Subclasses:None

class RMenuModItem
extends UWindow.UWindowList

// Descend from this class to add an item to the Mod menu. // Be sure to put a line in your Mod's .int file to specify this class // eg: // Object=(Name=MyModPkg.MyModMenuItem,Class=Class,MetaClass=RMenu.RMenuModItem,Description="Combo Menu Label") // // Thanks to Rus 'Nurail' Clark for integrating this code //
Variables
 string MenuCaption
 int MenuHeight
 int MenuWidth
 int MenuWidthStartOffset
 class ModPageWindowClass


Source Code


00001	// Descend from this class to add an item to the Mod menu.
00002	// Be sure to put a line in your Mod's .int file to specify this class
00003	// eg: 
00004	// Object=(Name=MyModPkg.MyModMenuItem,Class=Class,MetaClass=RMenu.RMenuModItem,Description="Combo Menu Label")
00005	//
00006	// Thanks to Rus 'Nurail' Clark for integrating this code
00007	//
00008	
00009	class RMenuModItem expands UWindowList;
00010	
00011	var class<UWindowWindow> ModPageWindowClass;
00012	var string MenuCaption;
00013	var int MenuWidth;
00014	var int MenuHeight;
00015	var int MenuWidthStartOffset;
00016	
00017	defaultproperties
00018	{
00019	     MenuCaption="Mod"
00020	     MenuWidth=440
00021	     MenuHeight=320
00022	}

End Source Code