From 0a1c18548d1af872c29047aefe4206385460e9c6 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 3 Nov 2020 17:04:18 +0100 Subject: [PATCH] source/Platform/PlatformDisplay.h: add grabCursor() to the interface. --- source/Platform/PlatformDisplay.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/Platform/PlatformDisplay.h b/source/Platform/PlatformDisplay.h index 2c88416..eaafe28 100644 --- a/source/Platform/PlatformDisplay.h +++ b/source/Platform/PlatformDisplay.h @@ -41,6 +41,8 @@ public : virtual void showCursor(bool value) = 0; + virtual void grabCursor(bool value) = 0; + protected : PlatformDisplay();