[studio/modlib] Add ig::ChildStackItem
All checks were successful
Build / build (push) Successful in 2m47s

This commit is contained in:
2024-03-14 23:32:05 -05:00
parent cf1f2c3372
commit a0d25a13c3
2 changed files with 15 additions and 1 deletions

View File

@@ -15,6 +15,12 @@ namespace studio::ig {
inline constexpr auto BtnSz = ImVec2{52, 22};
class ChildStackItem {
public:
explicit ChildStackItem(ox::CStringView id, ImVec2 const&sz = {}) noexcept;
~ChildStackItem() noexcept;
};
class IDStackItem {
public:
explicit IDStackItem(int id) noexcept;
@@ -98,4 +104,4 @@ class FilePicker {
};
}
}