home *** CD-ROM | disk | FTP | other *** search
/ Game Level Design / GLDesign.bin / Software / UnrealEngine2Runtime / UE2Runtime-22262001_Demo.exe / GUI / Classes / GUIVertGripButton.uc < prev    next >
Text File  |  2003-06-30  |  643b  |  27 lines

  1. // ====================================================================
  2. //  Class:  GUI.GUIVertGripButton
  3. //
  4. //  Written by Joe Wilcox
  5. //  (c) 2002, Epic Games, Inc.  All Rights Reserved
  6. // ====================================================================
  7.  
  8. class GUIVertGripButton extends GUIGFXButton
  9.         Native;
  10.  
  11.  
  12. function InitComponent(GUIController MyController, GUIComponent MyOwner)
  13. {
  14.     Super.Initcomponent(MyController, MyOwner);
  15. //    Graphic = Material'GUIContent.Menu.ButGrip';
  16. }
  17.  
  18.  
  19. defaultproperties
  20. {
  21.     StyleName="RoundButton"
  22.     Position=ICP_Bound
  23.     bNeverFocus=true
  24.     bCaptureMouse=true    
  25.     OnClickSound=CS_None
  26. }
  27.