mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-05-21 07:13:53 +02:00
27 lines
427 B
C++
27 lines
427 B
C++
#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 init() {
|
|
Impl::init();
|
|
}
|
|
|
|
void generateGeneric() {
|
|
Impl::generateGeneric();
|
|
}
|
|
|
|
void generateAlignment() {
|
|
Impl::generateAlignment();
|
|
}
|
|
|
|
void generateLevelChange() {
|
|
Impl::generateLevelChange();
|
|
}
|
|
|
|
}
|