lib_unity_purchase/Editor/Analytics/Events/IEditorAnalyticsEvent.cs

9 lines
221 B
C#
Raw Normal View History

2024-01-29 18:49:33 +08:00
namespace UnityEditor.Purchasing
{
internal interface IEditorAnalyticsEvent
{
EditorAnalyticsDataSignature GetSignature();
object CreateEventParams(string platformName, string packageKey);
}
}