From 25ff222c58d5370c2c29dddcc3da78c11465b8c1 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Sun, 31 Mar 2019 21:34:45 -0700 Subject: Updated command line format; updated submodules --- Common/NativeApp/include/AppBase.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Common/NativeApp/include/AppBase.h') diff --git a/Common/NativeApp/include/AppBase.h b/Common/NativeApp/include/AppBase.h index e5c4b21..d84a6ff 100644 --- a/Common/NativeApp/include/AppBase.h +++ b/Common/NativeApp/include/AppBase.h @@ -37,6 +37,11 @@ public: virtual void Render() = 0; virtual void Present() = 0; virtual void WindowResize(int width, int height) = 0; + virtual void GetDesiredInitialWindowSize(int& width, int& height) + { + width = 0; + height = 0; + } }; } -- cgit v1.2.3