Firstborn/Library/PackageCache/com.unity.ads@3.7.5/Runtime/Advertisement/Enums/ShowResult.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05:00

22 lines
654 B
C#

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