13 lines
293 B
C#
13 lines
293 B
C#
namespace OctoberStudio.Vibration
|
|
{
|
|
public interface IVibrationManager
|
|
{
|
|
void Vibrate(float duration, float intensity = 1.0f);
|
|
|
|
bool IsVibrationEnabled { get; set; }
|
|
|
|
void LightVibration();
|
|
void MediumVibration();
|
|
void StrongVibration();
|
|
}
|
|
} |