minesweeper_game/Library/PackageCache/com.unity.ads@a7b997f68a1d/Runtime/Advertisement/Events/FinishEventArgs.cs
2025-03-15 14:30:26 -04:00

17 lines
383 B
C#

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;
}
}
}