暫無描述
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.

ITelemetryMetricsInstanceWrapper.cs 326B

1234567891011
  1. using Unity.Services.Core.Telemetry.Internal;
  2. namespace UnityEngine.Purchasing.Telemetry
  3. {
  4. interface ITelemetryMetricsInstanceWrapper
  5. {
  6. void SetMetricsInstance(IMetrics metricsInstance);
  7. void SendMetric(TelemetryMetricTypes telemetryMetricTypes, string metricName, double metricTimeSeconds);
  8. }
  9. }