summaryrefslogtreecommitdiffstats
path: root/Common/NativeApp/include
diff options
context:
space:
mode:
Diffstat (limited to 'Common/NativeApp/include')
-rw-r--r--Common/NativeApp/include/AppBase.h5
1 files changed, 5 insertions, 0 deletions
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;
+ }
};
}