702d4b2eec
Fixed Account Popup Widget Follow/Unfollow Ignoring now also works, but doesn't have the ability to unignore Add a URL Delete method to the network manager Fixes #235
22 lines
319 B
C++
22 lines
319 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 singletons
|
|
} // namespace chatterino
|