mirror-chatterino2/src/singletons/accountmanager.hpp

20 lines
269 B
C++
Raw Normal View History

2017-12-31 00:50:07 +01:00
#pragma once
#include "twitch/twitchaccountmanager.hpp"
namespace chatterino {
class AccountManager
{
AccountManager();
public:
static AccountManager &getInstance();
void load();
twitch::TwitchAccountManager Twitch;
};
} // namespace chatterino