blob: 52a2ca92d340c0626902f9784e3f13f5bc140fc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#pragma once
#include <imgui.h>
namespace ImGui {
void SetNextWindowSizeRelScreen(float xPercent, float yPercent, ImGuiCond_ cond = ImGuiCond_None);
void SetNextWindowCentered(ImGuiCond_ cond = ImGuiCond_None);
void PushDisabled();
void PopDisabled();
void ErrorIcon();
void WarningIcon();
} // namespace ImGui
namespace UI {
void MainWindow();
void SettingsTab();
void DatabaseViewTab();
void ItemsTab();
void ExportTab();
} // namespace UI
|