mirror of
https://github.com/imperialsushi/gutterball-3.git
synced 2025-06-15 05:07:42 +00:00

Moving cam replay. Fixed the bugs. New Version 1.42 Moving cam replay. Fixed the bugs. New Version 1.42 Moving cam replay, Fixed the bugs.
21 lines
575 B
C#
21 lines
575 B
C#
using System;
|
|
|
|
namespace UnityEditor.Collaboration
|
|
{
|
|
internal static class CollabAnalytics
|
|
{
|
|
[Serializable]
|
|
private struct CollabUserActionAnalyticsEvent
|
|
{
|
|
public string category;
|
|
public string action;
|
|
}
|
|
|
|
public static void SendUserAction(string category, string action)
|
|
{
|
|
EditorAnalytics.SendCollabUserAction(new CollabUserActionAnalyticsEvent() { category = category, action = action });
|
|
}
|
|
|
|
public static readonly string historyCategoryString = "History";
|
|
};
|
|
}
|