mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-25 12:55:05 +00:00
* Dehardcode account providers * Fix crash on creation * Add dynamic 'add account dialog' provider selector * Fix typo and add newlines * Rename loginType to provider * Rename MojangAccount to Account and MojangAccountList to AccountList * Fix json save error
10 lines
111 B
C
10 lines
111 B
C
#pragma once
|
|
#include <QString>
|
|
|
|
struct AccountProfile
|
|
{
|
|
QString id;
|
|
QString name;
|
|
bool legacy;
|
|
};
|