refactoring, new game(s) in progress

This commit is contained in:
2026-04-09 12:47:09 -04:00
parent f7b00847ee
commit a529d5cdce
57 changed files with 2743 additions and 759 deletions

View File

@@ -4,12 +4,15 @@
namespace game::util::imgui::style
{
void rounding_set(float rounding)
void widget_set(float rounding)
{
constexpr auto SCROLLBAR_SIZE = 30.0f;
auto& style = ImGui::GetStyle();
style.WindowRounding = rounding;
style.FrameRounding = rounding;
style.GrabRounding = rounding;
style.ScrollbarSize = SCROLLBAR_SIZE;
}
void color_set(glm::vec3 color)