15 lines
269 B
C++
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();
|
|
};
|