2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 14:45:14 +00:00

Moved sending of bot's CallbackData and CallbackGame to separate file.

This commit is contained in:
23rd
2020-06-29 16:33:27 +03:00
committed by John Preston
parent 515d8e78da
commit 9445ce4b09
9 changed files with 168 additions and 143 deletions

View File

@@ -134,8 +134,9 @@ struct MessageUpdate {
DialogRowRefresh = (1 << 3),
CallAdded = (1 << 4),
ReplyMarkup = (1 << 5),
BotCallbackSent = (1 << 6),
LastUsedBit = (1 << 5),
LastUsedBit = (1 << 6),
};
using Flags = base::flags<Flag>;
friend inline constexpr auto is_flag_type(Flag) { return true; }