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