Firstborn/Library/PackageCache/com.unity.ads@4.4.2/Runtime/Advertisement/Enums/ShowResult.cs

22 lines
654 B
C#
Raw Normal View History

2023-03-28 13:24:16 -04:00
namespace UnityEngine.Advertisements
{
/// <summary>
/// An enum passed to <a href="../api/Advertisements.ShowResult.html">ShowOptions.resultCallback</a> after the ad has finished, indicating the result.
/// </summary>
public enum ShowResult
{
/// <summary>
/// Indicates that the ad failed to display.
/// </summary>
Failed,
/// <summary>
/// Indicates that the player did not allow the ad to complete.
/// </summary>
Skipped,
/// <summary>
/// Indicates that the player watched the ad to completion.
/// </summary>
Finished
}
}