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

33 lines
915 B
Ucode

//==============================================================================
// GUI button for the championchip, also base class for the other ladder buttons
//
// Written by Michiel Hendriks
// (c) 2003, Epic Games, Inc. All Rights Reserved
//==============================================================================
class UT2K4LadderButton extends GUIGFXButton;
var UT2K4MatchInfo MatchInfo;
var CacheManager.MapRecord MyMapRecord;
var int MatchIndex;
var int LadderIndex;
/**
The bar connection from the previous match
Light up when this match is available
*/
var GUIImage ProgresBar;
var Material PBNormal, PBActive;
function SetState(int Rung);
defaultproperties
{
Graphic=Texture'InterfaceArt_tex.Menu.changeme_texture' //Material'InterfaceContent.SPMenu.Lock1'
WinWidth=0.083925
WinHeight=0.113688
bVisible=false
Position=ICP_Scaled
bRepeatClick=false
}