> For the complete documentation index, see [llms.txt](https://kb.heathen.group/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kb.heathen.group/old-kb/old-toolkit-for-steamworks/unity/objects/classes/user-leave-data.md).

# User Leave Data

{% hint style="success" %}

#### Like what you're seeing?

Support us as a [GitHub Sponsor](/old-kb/where-to-buy/become-a-sponsor.md) and get instant access to all our assets, exclusive tools and assets, escalated support and issue tracking and our gratitude.\
\
These articles are made possible by our [GitHub Sponsors](/old-kb/where-to-buy/become-a-sponsor.md) ... become a sponsor today!
{% endhint %}

## Introduction

```csharp
using HeathenEngineering.SteamworksIntegration;
```

```csharp
public struct UserLeaveData
```

Used in the GameConnectedChatLeaveEvent and related event handlers.

## Fields and Attributes

### Room

The chat room this data relates to

```csharp
public ChatRoom room;
```

### User

The user this data relates to

```csharp
public UserData user;
```

### Kicked

Was the user kicked out

```csharp
public bool kicked;
```

### Dropped

Was the connection dropped

```csharp
public bool dropped;
```
