Implementation of output window with fullscreen, settings restore and

icon.
This commit is contained in:
brunoherbelin
2020-05-31 17:04:04 +02:00
parent 11d21bcaeb
commit 010337518b
13 changed files with 447 additions and 76 deletions

View File

@@ -15,10 +15,10 @@ struct WindowConfig
{
std::string name;
int x,y,w,h;
int monitor;
bool fullscreen;
std::string monitor;
WindowConfig() : name(""), x(15), y(15), w(1280), h(720), monitor(0), fullscreen(false) { }
WindowConfig() : name(""), x(15), y(15), w(1280), h(720), monitor(""), fullscreen(false) { }
};