mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-08-08 20:53:54 +00:00
22 lines
448 B
C++
22 lines
448 B
C++
/*
|
|
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
|
|
|
|
namespace Ui::Premium {
|
|
|
|
[[nodiscard]] float64 CubicBezier(
|
|
float64 x1,
|
|
float64 y1,
|
|
float64 x2,
|
|
float64 y2,
|
|
float64 x);
|
|
|
|
[[nodiscard]] bool Object3dSupported();
|
|
|
|
} // namespace Ui::Premium
|