mirror of
https://github.com/wiiu-env/AutobootModule.git
synced 2024-11-01 01:25:05 +01:00
17 lines
328 B
C++
17 lines
328 B
C++
#pragma once
|
|
#include <nn/act.h>
|
|
#include <stdint.h>
|
|
#include <string>
|
|
|
|
class AccountInfo {
|
|
public:
|
|
AccountInfo() = default;
|
|
|
|
nn::act::SlotNo slot{};
|
|
std::string name;
|
|
char accountId[nn::act::AccountIdSize];
|
|
bool isNetworkAccount = false;
|
|
uint8_t miiImageBuffer[65554];
|
|
uint32_t miiImageSize = 0;
|
|
};
|