FontBot/src/bot.h

17 lines
242 B
C
Raw Normal View History

2021-05-30 14:17:13 +02:00
#pragma once
#include <vector>
#include <TAPIManager.h>
#include "font.h"
class FontBot {
public:
FontBot();
~FontBot();
bool handleInline(TelegramAPI::Manager* api, TelegramAPI::InlineQuery& q);
private:
std::vector<Font*> fonts;
};