Files
NXST/include/nxst/ui/ui_context.hpp
T
DragonSpirit a76e06ba4d
CI / Build NRO (push) Failing after 7s
CI / Format check (push) Successful in 38s
CI / Layering check (push) Successful in 3s
CI / Upload release asset (push) Has been skipped
finish refactor, add docs and CI
2026-04-27 02:49:48 +03:00

15 lines
243 B
C++

#pragma once
#include <optional>
#include <string>
#include <switch.h>
#include <nxst/domain/account.hpp>
namespace ui {
struct UiContext {
std::optional<AccountUid> selectedUser;
std::string selectedUserName;
};
} // namespace ui