Files
lime/project/include/ui/Haptic.h
2016-10-24 17:46:54 -07:00

20 lines
178 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