summaryrefslogtreecommitdiff
path: root/core/src/Entrypoint/Vulkan.hpp
blob: 6404806a3d082b0772a9f0198116959c9d2f4794 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "Entrypoint/Common.hpp"

class VulkanBackend : public RenderingBackend {
public:
	VulkanBackend();
	virtual ~VulkanBackend() = default;
	virtual void BeginFrame() override;
	virtual void EndFrame() override;
};