mirror-chatterino2/src/widgets/emotepopup.h

19 lines
256 B
C
Raw Normal View History

2017-09-15 17:23:49 +02:00
#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);
};
}
}