27 lines
571 B
Ucode
Raw Normal View History

2017-10-19 21:00:49 -05:00
Class UI_PrestigeNote extends UI_ResetWarning;
2020-09-01 06:20:02 +03:00
var localized string WindowTitleText;
var localized string PrestigeButtonToolTip;
var localized string InfoLabelTextPart1;
var localized string InfoLabelTextPart2;
function InitMenu()
{
Super.InitMenu();
YesButton.ToolTip=PrestigeButtonToolTip;
}
2017-10-19 21:00:49 -05:00
function SetupTo( Ext_PerkBase P )
{
PerkToReset = P.Class;
2020-09-01 06:20:02 +03:00
WindowTitle = WindowTitleText$" "$P.PerkName;
InfoLabel.SetText(InfoLabelTextPart1$P.PrestigeSPIncrease$InfoLabelTextPart2);
2017-10-19 21:00:49 -05:00
}
defaultproperties
{
bIsPrestige=true
Begin Object Name=YesButten
End Object
}