mirror of
https://github.com/wiiu-env/AutobootModule.git
synced 2024-11-01 01:25:05 +01:00
14 lines
270 B
C++
14 lines
270 B
C++
#pragma once
|
|
|
|
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;
|
|
};
|