Create initial error and netstart windows

This commit is contained in:
Magnus Norddahl 2023-12-28 02:51:20 +01:00
commit 637b2b1147
23 changed files with 237 additions and 887 deletions

View file

@ -25,6 +25,11 @@ void DisplayWindow::ExitLoop()
Win32Window::ExitLoop();
}
Size DisplayWindow::GetScreenSize()
{
return Win32Window::GetScreenSize();
}
#else
std::unique_ptr<DisplayWindow> DisplayWindow::Create(DisplayWindowHost* windowHost)
@ -47,4 +52,9 @@ void DisplayWindow::ExitLoop()
throw std::runtime_error("DisplayWindow::ExitLoop not implemented");
}
Size DisplayWindow::GetScreenSize()
{
throw std::runtime_error("DisplayWindow::GetScreenSize not implemented");
}
#endif