31 lines
665 B
C#
31 lines
665 B
C#
using Unity.Services.Analytics;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public sealed class HouseUpgradedAnalyticsEvent : Event
|
|
{
|
|
public HouseUpgradedAnalyticsEvent() : base("house_upgraded")
|
|
{
|
|
}
|
|
|
|
public string SessionId
|
|
{
|
|
set => SetParameter("session_id", value);
|
|
}
|
|
|
|
public string BuildingName
|
|
{
|
|
set => SetParameter("building_name", value);
|
|
}
|
|
|
|
public int FromTier
|
|
{
|
|
set => SetParameter("from_tier", value);
|
|
}
|
|
|
|
public int ToTier
|
|
{
|
|
set => SetParameter("to_tier", value);
|
|
}
|
|
}
|
|
} |