No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ITelemetryDiagnosticsInstanceWrapper.cs 309B

1234567891011
  1. using Unity.Services.Core.Telemetry.Internal;
  2. namespace UnityEngine.Purchasing.Telemetry
  3. {
  4. interface ITelemetryDiagnosticsInstanceWrapper
  5. {
  6. void SetDiagnosticsInstance(IDiagnostics diagnosticsInstance);
  7. void SendDiagnostic(string diagnosticName, string diagnosticException);
  8. }
  9. }