mirror-chatterino2/src/singletons/accountmanager.hpp
2018-04-28 15:20:18 +02:00

22 lines
340 B
C++

#pragma once
#include "providers/twitch/twitchaccountmanager.hpp"
namespace chatterino {
namespace singletons {
class AccountManager
{
public:
AccountManager() = default;
~AccountManager() = delete;
void load();
providers::twitch::TwitchAccountManager Twitch;
};
} // namespace singletons
} // namespace chatterino