> For the complete documentation index, see [llms.txt](https://aatkit.gitbook.io/aatkit-unity-integration/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aatkit.gitbook.io/aatkit-unity-integration/other/reference/aatkitbinding/delegates/onresumeafterad.md).

# OnResumeAfterAd

### Overview <a href="#markdown-header-overview" id="markdown-header-overview"></a>

Notifies that ad came back from fullscreen and that application should resume.

### Warning <a href="#markdown-header-warning" id="markdown-header-warning"></a>

This callback is unreliable due to inconsistent use of callbacks in different ad network SDKs.

### Syntax <a href="#markdown-header-syntax" id="markdown-header-syntax"></a>

```csharp
OnResumeAfterAd(placementName)
```

placementName **(REQUIRED)**

*string* Unique name of placement. The same name will be used in gravite.net account.

**returns&#x20;*****void***

### Examples <a href="#markdown-header-examples" id="markdown-header-examples"></a>

```csharp
AATKitBinding.OnResumeAfterAdDelegate += OnResumeAfterAd;

public void OnResumeAfterAd(string placementName) 
{
    Debug.Log("OnResumeAfterAd: " + placementName);
}
```
