AyuGramDesktop/Telegram/SourceFiles/ayu/utils/taptic_engine/taptic_engine.cpp
2025-01-16 13:08:58 +03:00

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();
}
}