You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
672 B

using SCI.CursesWrapper;
4 weeks ago
namespace ANSI_Fahrplan.Screens;
public class IntroScreen : Window {
4 weeks ago
/// <summary>
/// Pass class constructor through to inherited constructor
/// </summary>
/// <param name="parentWindow">Parent window of this window object</param>
public IntroScreen (Window parentWindow) :
base (
0, 0,
parentWindow.GetUsableWidth (),
parentWindow.GetUsableHeight (),
parentWindow
)
{
string asciiArtPlusText =
"Press F1 for a quick start guide or simply press Enter\n" +
"to see upcoming events\n" +
AsciiArt.logo38c3_80x24 +
"\n38C3 Fahrplan in your terminal!";
AsciiArt.ShowCentered (WindowId, asciiArtPlusText);
4 weeks ago
}
}