> For the complete documentation index, see [llms.txt](https://docs.airship.gg/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.airship.gg/getting-started/readme.md).

# Welcome to Airship

Airship games are multiplayer, cross-platform and built with Unity.&#x20;

Games are written in TypeScript and have access to nearly all of the Unity API plus the helpful Airship API. It looks like this:

```typescript
export default class CubeSpinner extends AirshipBehaviour {
    public rotation = new Vector3(1, 1, 0.5);
    
    Update(dt: number) {
        this.transform.Rotate(this.rotation.mul(dt));
    }
}
```
