Firstborn/Library/PackageCache/com.unity.ads@4.4.2/Runtime/Advertisement/Events/FinishEventArgs.cs

17 lines
383 B
C#
Raw Normal View History

2023-03-28 13:24:16 -04:00
using System;
namespace UnityEngine.Advertisements.Events
{
class FinishEventArgs : EventArgs
{
public string placementId { get; }
public ShowResult showResult { get; }
public FinishEventArgs(string placementId, ShowResult showResult)
{
this.placementId = placementId;
this.showResult = showResult;
}
}
}