From 1bb0ef8960c71ef505a351702bec54c01ba15e22 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 12 Oct 2017 14:57:26 +0100 Subject: Fixing spritesheet and fixed #12 --- yage/base/window.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'yage/base/window.h') diff --git a/yage/base/window.h b/yage/base/window.h index 3f448132..84ba8303 100644 --- a/yage/base/window.h +++ b/yage/base/window.h @@ -47,8 +47,7 @@ public: Window &operator=(Window &&) = delete; /// create the window, initialize the handle and update the width and height - void create(const std::string &window_name, int width, int height, - unsigned flags = WindowFlags::SHOWN); + void create(std::string window_name, int width, int height); /// swap the buffer void swapBuffer(); /// clear buffer @@ -57,6 +56,8 @@ public: void hide(); /// show window void show(); + bool shouldClose(); + void pollEvents() const; }; } // namespace yage -- cgit