12 lines
221 B
C
12 lines
221 B
C
|
|
#pragma once
|
||
|
|
#include "type.h"
|
||
|
|
#include "render/window.h"
|
||
|
|
namespace vkn {
|
||
|
|
class VulkanWindow : public api::Window {
|
||
|
|
private:
|
||
|
|
VkSurfaceKHR mSurfaceKHR;
|
||
|
|
public:
|
||
|
|
using api::Window::Window;
|
||
|
|
void CreateRender();
|
||
|
|
};
|
||
|
|
}
|