Revisions, SVI import fix.

This commit is contained in:
J-D-K
2025-08-16 18:58:32 -04:00
parent 6054a3a1f6
commit 1caec25d2a
105 changed files with 1112 additions and 902 deletions

View File

@@ -26,11 +26,14 @@ namespace ui
~DialogBox() {};
/// @brief Creates and returns a new DialogBox instance. See constructor.
static std::shared_ptr<ui::DialogBox> create(int x,
int y,
int width,
int height,
DialogBox::Type type = DialogBox::Type::Dark);
static inline std::shared_ptr<ui::DialogBox> create(int x,
int y,
int width,
int height,
DialogBox::Type type = DialogBox::Type::Dark)
{
return std::make_shared<ui::DialogBox>(x, y, width, height, type);
}
/// @brief Update override. This does NOTHING!
void update(bool hasFocus) override {};