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

8 lines
210 B
C#

namespace SRDebugger.Services
{
public interface IBugReportService
{
void SendBugReport(BugReport report, BugReportCompleteCallback completeHandler, BugReportProgressCallback progressCallback = null);
}
}