// // Created by Даниил Виноградов on 26.01.2025. // #include #include namespace NXKit { UIAction::UIAction(std::string title, std::function handler): _title(std::move(title)), _handler(std::move(handler)) { } }