rott/kf_sources/XInterface/Classes/GUIVertScrollButton.uc
2026-07-14 20:27:09 +07:00

18 lines
346 B
Ucode

class GUIVertScrollButton extends GUIScrollButtonBase;
function InitComponent(GUIController MyController, GUIComponent MyOwner)
{
if (bIncreaseButton)
{
StyleName="VertDownButton";
ImageIndex = 7;
}
Super.Initcomponent(MyController, MyOwner);
}
defaultproperties
{
ImageIndex=6
StyleName="VertUpButton"
}