10 lines
175 B
C#
10 lines
175 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityEngine.Purchasing.Telemetry
|
||
|
{
|
||
|
interface ITelemetryDiagnostics
|
||
|
{
|
||
|
void SendDiagnostic(string diagnosticName, Exception e);
|
||
|
}
|
||
|
}
|