Files
NXST/include/nxst/ui/ui_context.hpp
T
DragonSpirit 925bb714cf
CI / Build NRO (push) Failing after 4s
CI / Format check (push) Failing after 31s
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:47:06 +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