Files
Better-Seewo/Better-EN5/Services/ITouchFixService.cs

12 lines
228 B
C#
Raw Normal View History

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