sent from android

This commit is contained in:
2025-07-30 13:14:22 +01:00
parent 15aa9d54ea
commit a03c7c85b8
25 changed files with 2243 additions and 203 deletions

23
include/gui.hpp Normal file
View File

@@ -0,0 +1,23 @@
#ifndef GUI_HPP
#define GUI_HPP
// Includes
#include "imgui.h"
#include "imgui_impl_sdl3.h"
#include "imgui_impl_opengl3.h"
#include "window.hpp"
#include "graphics.hpp"
#include <iostream>
// Variables
extern ImGuiIO& io;
extern ImGuiStyle& style;
extern
// Functions
int initialize_imgui();
void cleanup_imgui();
void new_frame_imgui();
void frame_time_ui();
#endif