Remove ICloseable
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user