mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-09-10 11:35:37 -05:00
Revisions, SVI import fix.
This commit is contained in:
@@ -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 {};
|
||||
|
||||
Reference in New Issue
Block a user