> For the complete documentation index, see [llms.txt](https://owo-game.gitbook.io/c/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://owo-game.gitbook.io/c/sensations/send-sensations.md).

# Send sensations

After the connection has been established, you can send sensations using the `Send` method of the `OWO` class.

```csharp
//Send a sensation
OWO.Send(Sensation);
```

You may choose to **add a priority** to a sensation, this would make it so that no other sensation may be sent unless the current sensation has **finished playing** or if it has the **same or higher priority**.&#x20;

```csharp
Sensation.Priority = 1;
OWO.Send(Sensation);
```
