mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
10850c0ec7
refactored the rendering process
21 lines
330 B
C++
21 lines
330 B
C++
#pragma once
|
|
|
|
#include "lockedobject.hpp"
|
|
#include "messages/image.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
class ChannelData
|
|
{
|
|
public:
|
|
ChannelData() = default;
|
|
|
|
LockedObject<std::string> username;
|
|
LockedObject<std::string> id;
|
|
|
|
private:
|
|
// std::map<std::string, BadgeData> subscriptionBadges;
|
|
};
|
|
|
|
} // namespace chatterino
|