20 lines
167 B
C++
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 |