Remove ICloseable

This commit is contained in:
Georg Hagen
2025-01-06 16:28:27 +01:00
parent 46c1d1f18f
commit ac0a0e84b4
22 changed files with 48 additions and 73 deletions

View File

@@ -7,7 +7,6 @@
#pragma once
#include "Base/ITickable.hpp"
#include "Base/ICloseable.hpp"
#include "Base/IPlatform.hpp"
#include "InputDeviceGLFW.hpp"
#include <array>
@@ -18,7 +17,7 @@ namespace OpenVulkano
{
class WindowGLFW;
class InputProviderGLFW final : public ITickable, public ICloseable
class InputProviderGLFW final : public ITickable
{
friend WindowGLFW;
static InputProviderGLFW* INSTANCE;
@@ -32,7 +31,7 @@ namespace OpenVulkano
public:
void Init();
void Close() override;
virtual void Close();
void PreTick();