Changes to the inharitance of some classes

This commit is contained in:
2023-08-22 00:40:20 +02:00
parent b99e255ad6
commit d84d2935ff
10 changed files with 10 additions and 10 deletions

View File

@@ -22,7 +22,7 @@ namespace openVulkanoCpp
/**
* \brief A simple GraphicsAppManager. It can only handle one window.
*/
class GraphicsAppManager final : virtual public IGraphicsAppManager, virtual public IWindowHandler
class GraphicsAppManager final : public IGraphicsAppManager, public IWindowHandler
{
private:
std::unique_ptr<IPlatform> platform;