Firstborn/Library/PackageCache/com.unity.ads@3.7.5/Runtime/Advertisement/Enums/UnityAdsShowCompletionState.cs

19 lines
474 B
C#
Raw Normal View History

2023-03-28 13:24:16 -04:00
namespace UnityEngine.Advertisements {
public enum UnityAdsShowCompletionState {
/// <summary>
/// A state that indicates that the user skipped the ad.
/// </summary>
SKIPPED,
/// <summary>
/// A state that indicates that the ad was played entirely.
/// </summary>
COMPLETED,
/// <summary>
/// Default value / Used when no mapping available
/// </summary>
UNKNOWN
}
}