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

19 lines
474 B
C#

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