2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 10:47:11 +00:00

25 lines
600 B
C
Raw Permalink Normal View History

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#include "data/data_photo.h"
#include "data/data_document.h"
struct GameData {
2021-10-11 21:46:51 +04:00
GameData(not_null<Data::Session*> owner, const GameId &id);
2021-10-11 21:46:51 +04:00
const not_null<Data::Session*> owner;
GameId id = 0;
uint64 accessHash = 0;
QString shortName;
QString title;
QString description;
PhotoData *photo = nullptr;
DocumentData *document = nullptr;
};