20 lines
621 B
Ucode
20 lines
621 B
Ucode
//==============================================================================
|
|
// Listbox for the PlayInfoList
|
|
//
|
|
// Created by Ron Prestenback
|
|
// © 2003, Epic Games, Inc. All Rights Reserved
|
|
//==============================================================================
|
|
class PlayInfoListBox extends GUIMultiColumnListBox;
|
|
|
|
function InitComponent(GUIController MyController, GUIComponent MyOwner)
|
|
{
|
|
HeaderColumnPerc = UT2K4Tab_RulesBase(MyOwner).HeaderColumnPerc;
|
|
Super.InitComponent(MyController, MyOwner);
|
|
}
|
|
|
|
DefaultProperties
|
|
{
|
|
StyleName="ListBox"
|
|
DefaultListClass="GUI2K4.PlayInfoList"
|
|
}
|