12 lines
326 B
C#
12 lines
326 B
C#
|
using Unity.Services.Core.Telemetry.Internal;
|
||
|
|
||
|
namespace UnityEngine.Purchasing.Telemetry
|
||
|
{
|
||
|
interface ITelemetryMetricsInstanceWrapper
|
||
|
{
|
||
|
void SetMetricsInstance(IMetrics metricsInstance);
|
||
|
|
||
|
void SendMetric(TelemetryMetricTypes telemetryMetricTypes, string metricName, double metricTimeSeconds);
|
||
|
}
|
||
|
}
|