2020-02-25 00:44:40 +01:00
|
|
|
#include "Window.h"
|
2020-03-02 19:07:49 +01:00
|
|
|
#include "Vulkan/VulkanGraphics.h"
|
2020-02-25 00:44:40 +01:00
|
|
|
|
|
|
|
|
Seele::Window::Window(const WindowCreateInfo& createInfo)
|
2020-03-02 19:07:49 +01:00
|
|
|
: width(createInfo.width)
|
|
|
|
|
, height(createInfo.height)
|
|
|
|
|
, windowHandle(nullptr)
|
2020-02-25 00:44:40 +01:00
|
|
|
{
|
2020-03-02 19:07:49 +01:00
|
|
|
graphics = new VulkanGraphics();
|
2020-02-25 00:44:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Seele::Window::~Window()
|
|
|
|
|
{
|
2020-03-02 19:07:49 +01:00
|
|
|
}
|