Files
lime/project/include/ui/Haptic.h
2018-07-18 17:32:51 -07:00

20 lines
167 B
C++

#ifndef LIME_UI_HAPTIC_H
#define LIME_UI_HAPTIC_H
namespace lime {
class Haptic {
public:
static void Vibrate (int period, int duration);
};
}
#endif