Remove ICloseable
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include "ITickable.hpp"
|
||||
#include "ICloseable.hpp"
|
||||
#include "UI/IWindow.hpp"
|
||||
|
||||
namespace OpenVulkano
|
||||
@@ -12,11 +11,11 @@ namespace OpenVulkano
|
||||
PlatformInitFailedException(char const* const message) : runtime_error(message) {}
|
||||
};
|
||||
|
||||
class IPlatform : public ITickable, public ICloseable
|
||||
class IPlatform : public ITickable
|
||||
{
|
||||
public:
|
||||
virtual void Init() = 0;
|
||||
|
||||
virtual void Close() = 0;
|
||||
virtual IWindow* MakeWindow() = 0;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user