mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-05-04 06:53:55 +02:00
29 lines
586 B
C++
29 lines
586 B
C++
// This is the source code of AyuGram for Desktop.
|
|
//
|
|
// We do not and cannot prevent the use of our code,
|
|
// but be respectful and credit the original author.
|
|
//
|
|
// Copyright @Radolyn, 2025
|
|
#include "taptic_engine.h"
|
|
|
|
#if defined Q_OS_MAC
|
|
#include "ayu/utils/taptic_engine/platform/taptic_engine_mac.h"
|
|
#else
|
|
#include "ayu/utils/taptic_engine/platform/taptic_engine_dummy.h"
|
|
#endif
|
|
|
|
namespace TapticEngine {
|
|
|
|
void generateGeneric() {
|
|
Impl::generateGeneric();
|
|
}
|
|
|
|
void generateAlignment() {
|
|
Impl::generateAlignment();
|
|
}
|
|
|
|
void generateLevelChange() {
|
|
Impl::generateLevelChange();
|
|
}
|
|
|
|
}
|