package com.unity3d.ads.adplayer; import androidx.annotation.CallSuper; import com.unity3d.ads.adplayer.AdPlayer; import kotlin.Unit; import kotlin.coroutines.Continuation; import kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsKt; import kotlin.jvm.internal.Intrinsics; /* loaded from: classes4.dex */ public interface EmbeddableAdPlayer extends AdPlayer { public static final class DefaultImpls { @CallSuper public static Object destroy(EmbeddableAdPlayer embeddableAdPlayer, Continuation continuation) { Object coroutine_suspended; Object destroy = AdPlayer.DefaultImpls.destroy(embeddableAdPlayer, continuation); coroutine_suspended = IntrinsicsKt__IntrinsicsKt.getCOROUTINE_SUSPENDED(); return destroy == coroutine_suspended ? destroy : Unit.INSTANCE; } public static void show(EmbeddableAdPlayer embeddableAdPlayer, ShowOptions showOptions) { Intrinsics.checkNotNullParameter(showOptions, "showOptions"); AdPlayer.DefaultImpls.show(embeddableAdPlayer, showOptions); } } }