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

26 lines
562 B
Ucode

// ====================================================================
// (C) 2002, Epic Games
// ====================================================================
class ModsAndDemosTabs extends UT2K4TabPanel
abstract;
var UT2K4ModsAndDemos MyPage;
function InitComponent(GUIController MyController, GUIComponent MyOwner)
{
super.InitComponent(MyController,MyOwner);
MyPage = UT2K4ModsAndDemos(MyOwner.MenuOwner);
}
function ShowPanel(bool bShow)
{
if (bShow)
MyPage.MyFooter.TabChange(Tag);
super.ShowPanel(bShow);
}