forked from hunterzonewu/unity-decompiled
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnalytics.cs
More file actions
22 lines (19 loc) · 743 Bytes
/
Analytics.cs
File metadata and controls
22 lines (19 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Decompiled with JetBrains decompiler
// Type: UnityEditor.Analytics
// Assembly: UnityEditor, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 01B28312-B6F5-4E06-90F6-BE297B711E41
// Assembly location: C:\Users\Blake\sandbox\unity\test-project\Library\UnityAssemblies\UnityEditor.dll
using System.Runtime.CompilerServices;
using UnityEngine;
namespace UnityEditor
{
internal sealed class Analytics
{
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
public static extern void Track(string page);
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
public static extern void Event(string category, string action, string label, int value);
}
}