mirror of
https://github.com/XITRIX/NXKit.git
synced 2026-05-30 11:46:52 +00:00
15 lines
267 B
C++
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))
|
|
{ }
|
|
|
|
} |