Files
2025-02-24 23:03:13 +01:00

15 lines
267 B
C++

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