> For the complete documentation index, see [llms.txt](https://docs.tankandhealerstudio.com/assets/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tankandhealerstudio.com/assets/ultimateradialmenu/documentation/ultimateradialmenu/events/eventtemplate.md).

# EventTemplate

{% hint style="warning" %}
**TEMPORARY EXAMPLE TEMPLATE**
{% endhint %}

{% code overflow="wrap" lineNumbers="true" fullWidth="true" %}

```csharp
using UnityEngine;

public class RadialMenuEventExample : MonoBehaviour
{
    // BE SURE TO ASSIGN THIS IN THE INSPECTOR //
    public UltimateRadialMenu radialMenu;
    
    void Start ()
    {
        radialMenu.EventName += ( buttonIndex ) =>
        {
            Debug.Log( $"Button {buttonIndex} ________." );
        };
    }
}
```

{% endcode %}
