changed some filenames and stuff like that

This commit is contained in:
fourtf
2017-09-16 16:20:10 +02:00
parent c7b3480aaf
commit a4995201f5
18 changed files with 46 additions and 41 deletions
+23
View File
@@ -0,0 +1,23 @@
#pragma once
#include "channel.hpp"
#include "emotemanager.hpp"
#include "widgets/basewidget.hpp"
#include "widgets/channelview.hpp"
namespace chatterino {
namespace widgets {
class EmotePopup : public BaseWidget
{
public:
explicit EmotePopup(ColorScheme &, EmoteManager &);
void loadChannel(std::shared_ptr<Channel> channel);
private:
ChannelView *view;
EmoteManager &emoteManager;
};
}
}