mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
17 lines
318 B
C++
17 lines
318 B
C++
#pragma once
|
|
|
|
#include "providers/chatterino/ChatterinoBadges.hpp"
|
|
|
|
namespace chatterino::mock {
|
|
|
|
class ChatterinoBadges : public IChatterinoBadges
|
|
{
|
|
public:
|
|
std::optional<EmotePtr> getBadge(const UserId &id) override
|
|
{
|
|
(void)id;
|
|
return std::nullopt;
|
|
}
|
|
};
|
|
|
|
} // namespace chatterino::mock
|