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

@@ -17,7 +17,7 @@ struct GLFWwindow;
namespace openVulkanoCpp::GLFW
{
class WindowGLFW final : public BaseWindow, virtual public IVulkanWindow, virtual public IOpenGlWindow
class WindowGLFW final : virtual public BaseWindow, virtual public IVulkanWindow, virtual public IOpenGlWindow
{
private:
InputProviderGLFW& inputProvider;