mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
19 lines
256 B
C
19 lines
256 B
C
|
#pragma once
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
#include "channel.hpp"
|
||
|
|
||
|
namespace chatterino {
|
||
|
namespace widgets {
|
||
|
|
||
|
class EmotePopup : public QWidget
|
||
|
{
|
||
|
public:
|
||
|
explicit EmotePopup(QWidget *parent = 0);
|
||
|
|
||
|
void loadChannel(std::shared_ptr<Channel> channel);
|
||
|
};
|
||
|
}
|
||
|
}
|