aboutsummaryrefslogtreecommitdiff
path: root/core/src/Entrypoint/Vulkan.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/Entrypoint/Vulkan.hpp')
-rw-r--r--core/src/Entrypoint/Vulkan.hpp11
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;
+};