From 70f73c1d52195eb84c6874274bf016f21a6ddc97 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Wed, 4 Nov 2020 16:43:56 +0100 Subject: [PATCH] source/Platform/PlatformDisplay.h: add getPosition() to the intreface --- source/Platform/PlatformDisplay.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/Platform/PlatformDisplay.h b/source/Platform/PlatformDisplay.h index c1505b6..5e9d9f7 100644 --- a/source/Platform/PlatformDisplay.h +++ b/source/Platform/PlatformDisplay.h @@ -35,6 +35,8 @@ public : virtual void setPosition(unsigned int x, unsigned int y) = 0; + virtual Vector2u getPosition() const = 0; + virtual void minimize() = 0; virtual void maximize() = 0;