Files
UltimMC_Launcher/api/logic/minecraft/auth/AccountProfile.h
Max 167b6bd405 Dehardcode account providers (#38)
* 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
2021-06-14 12:51:25 +03:00

10 lines
111 B
C

#pragma once
#include <QString>
struct AccountProfile
{
QString id;
QString name;
bool legacy;
};