using Mindmagma.Curses;
namespace ANSI_Fahrplan.Screens;
public class IntroScreen : Screen {
private nint infoTextBox;
///
/// Pass class constructor through to inherited constructor
///
/// Root window to use for this screen
public IntroScreen (nint rootWindow) : base (rootWindow) { }
public override void Show () {
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 (RootWindow, asciiArtPlusText);
//infoTextBox = NCurses.SubWindow (infoTextBox, );
NCurses.Refresh ();
NCurses.WindowRefresh (RootWindow);
}
public override void Hide () {
}
}