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

17 lines
383 B
Ucode

//-----------------------------------------------------------
//
//-----------------------------------------------------------
class GUIInvButton extends GUIButton;
var class<Inventory> Inv;
function InitComponent(GUIController MyController, GUIComponent MyOwner)
{
Super.InitComponent(MyController, MyOwner);
}
DefaultProperties
{
bFocusOnWatch = false;
}