blob: 134a20fbde5a7fd2702e7b9dc0668261bc1e7e97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Entrypoint/Common.hpp"
class DirectX11Backend : public RenderingBackend {
public:
DirectX11Backend();
virtual ~DirectX11Backend() = default;
virtual void BeginFrame() override;
virtual void EndFrame() override;
};
|