Remove ICloseable
This commit is contained in:
@@ -8,7 +8,6 @@
|
||||
|
||||
#include "Math/Math.hpp"
|
||||
#include "Base/PlatformEnums.hpp"
|
||||
#include "Base/ICloseable.hpp"
|
||||
#include <string>
|
||||
#include <stdexcept>
|
||||
|
||||
@@ -36,12 +35,13 @@ namespace OpenVulkano
|
||||
bool resizeable = true;
|
||||
};
|
||||
|
||||
class IWindow : public ICloseable
|
||||
class IWindow
|
||||
{
|
||||
public:
|
||||
~IWindow() override = default;
|
||||
virtual ~IWindow() = default;
|
||||
|
||||
virtual void Init(RenderAPI::RenderApi renderApi) = 0;
|
||||
virtual void Close() = 0;
|
||||
|
||||
virtual bool WindowHasBeenDestroyed() const = 0;
|
||||
virtual void SetWindowHasBeenDestroyed() = 0;
|
||||
|
||||
Reference in New Issue
Block a user