Files
Better-Seewo/Better-EN5/Services/ITouchFixService.cs
2026-06-28 01:43:01 +08:00

12 lines
228 B
C#

using System.Threading.Tasks;
namespace BetterEN5.Services
{
public interface ITouchFixService
{
Task ApplyFixAsync();
bool IsTouchWorkingCorrectly();
Task<bool> ForceTouchEnableAsync();
}
}