> For the complete documentation index, see [llms.txt](https://ub-docs.adster.tech/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ub-docs.adster.tech/how-to-configure/initialising-the-sdk.md).

# Initialising the SDK

{% tabs %}
{% tab title="C#" %}

```csharp
// Initialize the SDK
AdsterBridgeUtil.InitSdk("gameobject_name_goes_here");

//Callback to receive initialization status
private void OnInitializationComplete(string statusJson)
    {
        Debug.Log("SDK Initialized: " + statusJson);
    }
```

{% endtab %}
{% endtabs %}
