# Multiplayer

All games on Airship are multiplayer by default.

## Game Servers

When published, your game automatically runs with a dedicated server. This means your entire Unity project will run on the game server just as it runs on clients. Your game server will manage connecting clients and set them up as [players](https://ref.airship.gg/classes/Player.html).

<figure><img src="/files/pLHh089bv6h8jexJxiKw" alt="" width="371"><figcaption></figcaption></figure>

A game server should be responsible for storing game state (such as how many coins each player has) and communicating that state to all connected players.

{% hint style="info" %}
For server ↔ client data communication see [`NetworkSignal`](/networking/network-signals.md)
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.airship.gg/networking/multiplayer.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
