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