mirror of
https://github.com/54108/Atom.git
synced 2025-04-14 10:26:04 +00:00
20 lines
397 B
C
20 lines
397 B
C
|
#ifndef ATOM_H
|
||
|
#define ATOM_H
|
||
|
|
||
|
#include "imgui.h"
|
||
|
#include "imgui_internal.h"
|
||
|
#include "imgui_impl_glfw.h"
|
||
|
#include "imgui_impl_vulkan.h"
|
||
|
#include "imstb_truetype.h"
|
||
|
#include <iostream>
|
||
|
#include <vector>
|
||
|
#include <cstdlib>
|
||
|
#define GLFW_INCLUDE_NONE
|
||
|
#define GLFW_INCLUDE_VULKAN
|
||
|
#include <GLFW/glfw3.h>
|
||
|
|
||
|
void InitStyle(ImGuiStyle &style);
|
||
|
|
||
|
void DrawTitleBar(const char *title, bool &p_open);
|
||
|
|
||
|
#endif
|