From fe7f671c0b7a0a30073f65cdb58016b3615172d3 Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Mon, 16 Jul 2018 12:39:40 -1000 Subject: [PATCH] Add Qt Application type --- include/boo/IApplication.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boo/IApplication.hpp b/include/boo/IApplication.hpp index e12ba52..712b434 100644 --- a/include/boo/IApplication.hpp +++ b/include/boo/IApplication.hpp @@ -40,7 +40,8 @@ public: Win32 = 6, UWP = 7, Revolution = 8, - Cafe = 9 + Cafe = 9, + Qt = 10 }; virtual EPlatformType getPlatformType() const=0;