mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
22 lines
294 B
C++
22 lines
294 B
C++
#pragma once
|
|
|
|
#include "twitch/twitchaccountmanager.hpp"
|
|
|
|
namespace chatterino {
|
|
namespace singletons {
|
|
|
|
class AccountManager
|
|
{
|
|
AccountManager();
|
|
|
|
public:
|
|
static AccountManager &getInstance();
|
|
|
|
void load();
|
|
|
|
twitch::TwitchAccountManager Twitch;
|
|
};
|
|
|
|
} // namespace chatterino
|
|
}
|