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

19 lines
500 B
Ucode

//-----------------------------------------------------------
//
//-----------------------------------------------------------
class SRBuyMenuSaleListBox extends KFBuyMenuSaleListBox;
function InitComponent(GUIController MyController, GUIComponent MyOwner)
{
DefaultListClass = string(Class'SRBuyMenuSaleList');
Super.InitComponent(MyController,MyOwner);
}
function GUIBuyable GetSelectedBuyable()
{
return SRBuyMenuSaleList(List).GetSelectedBuyable();
}
defaultproperties
{
}