learn-vulkan/vk_gui.h
2026-02-12 23:24:24 -05:00

15 lines
269 B
C++

#pragma once
#include "vk_types.h"
class VulkanEngine;
class VkGUI {
public:
bool should_quit = false;
bool stop_rendering = false;
struct SDL_Window* init_window(VkExtent2D windowExtent);
void destroy(struct SDL_Window* _window);
void poll_event();
};