Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/SRDebugger/Services/IPinEntryService.cs
2026-02-21 16:45:37 +08:00

16 lines
504 B
C#

using System;
using System.Collections.Generic;
namespace SRDebugger.Services
{
public interface IPinEntryService
{
bool IsShowingKeypad { get; }
void ShowPinEntry(IList<int> requiredPin, string message, PinEntryCompleteCallback callback, bool allowCancel = true);
[Obsolete("blockInput param is deprecated (and ignored), please use overload without it.")]
void ShowPinEntry(IList<int> requiredPin, string message, PinEntryCompleteCallback callback, bool blockInput, bool allowCancel);
}
}