#include "./start_screen.hpp" #include "./main_screen.hpp" #include StartScreen::StartScreen(void) { } Screen* StartScreen::poll(bool&) { // TODO: imgui tox profile selector? // +---------------------------- // | |*tox profile*| plugins | // | +------+ +-------- // | | ICON | | fileselector/dropdown? // | | | | password input // | +------+ +-------- // +---------------------------- auto new_screen = std::make_unique("tomato.tox"); return new_screen.release(); }