diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-11-13 14:25:24 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-11-14 23:46:14 +0000 |
commit | ee88fe8a5bbdd95c6fcaf4f972239aa418e05b0a (patch) | |
tree | 66f7885cb64ec4f36a13e1bf6fd95a3d59ff9f92 /ui/window.h | |
parent | Remove useless GeoData default constructor (diff) | |
download | ilt-ee88fe8a5bbdd95c6fcaf4f972239aa418e05b0a.tar.bz2 ilt-ee88fe8a5bbdd95c6fcaf4f972239aa418e05b0a.tar.xz ilt-ee88fe8a5bbdd95c6fcaf4f972239aa418e05b0a.zip |
Pass flags to Window constructor
Diffstat (limited to 'ui/window.h')
-rw-r--r-- | ui/window.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/window.h b/ui/window.h index d618976..6f8ad82 100644 --- a/ui/window.h +++ b/ui/window.h @@ -12,7 +12,7 @@ class Window {
public:
- Window(size_t width, size_t height, const std::string & title);
+ Window(size_t width, size_t height, const std::string & title, Uint32 flags);
virtual ~Window() = default;
NO_COPY(Window);
|