IQ.Pilot Release Commit @ 0b96bd5

This commit is contained in:
IQ.Lvbs CI [bot]
2026-09-02 16:46:45 -05:00
parent 4fb3da761f
commit 7745f48100
162 changed files with 12835 additions and 9476 deletions

View File

@@ -0,0 +1,25 @@
#pragma once
#include <string>
struct GLFWwindow;
namespace inistate {
struct MainWindowState {
int pos[2] = {0, 0};
int size[2] = {0, 0};
bool maximized = false;
bool has_geometry = false;
float video_splitter_ratio = -1.0f;
bool messages_visible = true;
bool video_visible = true;
};
extern MainWindowState main_window;
void addSettingsHandler();
void load();
void applyWindowGeometry(GLFWwindow *window);
std::string save();
}