Class TestControls extends SRMenuAddition;

simulated function NotifyMenuOpen( SRInvasionLoginMenu M, GUIController C )
{
	Super.NotifyMenuOpen(M,C);
	M.AddControlButton("Do that","Howwdy?").OnClick = ButtonClicked;
	M.AddControlButton("Yoyoyo","Blaaah!").OnClick = ButtonClicked;
}

simulated function bool ButtonClicked(GUIComponent Sender)
{
	Level.GetLocalPlayerController().ClientMessage("Click!");
	return false;
}
