mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
16 lines
213 B
C++
16 lines
213 B
C++
|
#pragma once
|
||
|
|
||
|
#include <unordered_map>
|
||
|
#include "common/Singleton.hpp"
|
||
|
#include "messages/Emote.hpp"
|
||
|
|
||
|
namespace chatterino {
|
||
|
|
||
|
class Badges : public Singleton
|
||
|
{
|
||
|
public:
|
||
|
Badges();
|
||
|
};
|
||
|
|
||
|
} // namespace chatterino
|