14 lines
245 B
Plaintext
14 lines
245 B
Plaintext
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public static class HandheldUtils
|
||
|
{
|
||
|
public static void Vibrate()
|
||
|
{
|
||
|
#if UNITY_ANDROID || UNITY_EDITOR || UNITY_IOS
|
||
|
Handheld.Vibrate();
|
||
|
#endif
|
||
|
}
|
||
|
}
|