small fixes

This commit is contained in:
MihailRis
2024-12-05 22:36:12 +03:00
parent 84b3b82dba
commit 605d7e7897
4 changed files with 15 additions and 7 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
namespace gui {
struct Page {
std::string name;
std::shared_ptr<UINode> panel = nullptr;
std::shared_ptr<UINode> panel;
};
using page_loader_func = std::function<std::shared_ptr<UINode>(const std::string& name)>;