WXMC/.svn/pristine/55/552ca7fe299b65ce7e683dab6393937285946389.svn-base

14 lines
245 B
Plaintext
Raw Normal View History

2024-12-04 16:18:46 +08:00
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
}
}