using SCI.CursesWrapper;
namespace ANSI_Fahrplan.Screens;
public class IntroScreen : Window {
///
/// Pass class constructor through to inherited constructor
///
/// Parent window of this window object
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);
}
}