diff options
Diffstat (limited to 'core/src/Entrypoint/Vulkan.hpp')
-rw-r--r-- | core/src/Entrypoint/Vulkan.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/src/Entrypoint/Vulkan.hpp b/core/src/Entrypoint/Vulkan.hpp new file mode 100644 index 0000000..6404806 --- /dev/null +++ b/core/src/Entrypoint/Vulkan.hpp @@ -0,0 +1,11 @@ +#pragma once + +#include "Entrypoint/Common.hpp" + +class VulkanBackend : public RenderingBackend { +public: + VulkanBackend(); + virtual ~VulkanBackend() = default; + virtual void BeginFrame() override; + virtual void EndFrame() override; +}; |