22 lines
340 B
C++
22 lines
340 B
C++
#pragma once
|
|
|
|
#include "providers/twitch/twitchaccountmanager.hpp"
|
|
|
|
namespace chatterino {
|
|
namespace singletons {
|
|
|
|
class AccountManager
|
|
{
|
|
AccountManager();
|
|
|
|
public:
|
|
static AccountManager &getInstance();
|
|
|
|
void load();
|
|
|
|
providers::twitch::TwitchAccountManager Twitch;
|
|
};
|
|
|
|
} // namespace singletons
|
|
} // namespace chatterino
|