12 lines
309 B
C#
12 lines
309 B
C#
|
using Unity.Services.Core.Telemetry.Internal;
|
||
|
|
||
|
namespace UnityEngine.Purchasing.Telemetry
|
||
|
{
|
||
|
interface ITelemetryDiagnosticsInstanceWrapper
|
||
|
{
|
||
|
void SetDiagnosticsInstance(IDiagnostics diagnosticsInstance);
|
||
|
|
||
|
void SendDiagnostic(string diagnosticName, string diagnosticException);
|
||
|
}
|
||
|
}
|