mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
14 lines
279 B
C++
14 lines
279 B
C++
#include "account.h"
|
|
|
|
namespace chatterino {
|
|
|
|
Account Account::anon("justinfan123", "", "");
|
|
|
|
Account::Account(QString username, QString oauthToken, QString oauthClient)
|
|
{
|
|
this->oauthClient = oauthClient;
|
|
this->oauthToken = oauthToken;
|
|
this->username = username;
|
|
}
|
|
}
|