# WorldCreateOptions

`import { WorldCreateOptions } from "destack:runtime";`

Create options for one world.

```ds title="WorldCreateOptions"
export struct WorldCreateOptions {
    engine: Engine;
    execution: Execution;
    labels: [Label];
}
```

[language/library/src/runtime/world.ds:67:74](https://github.com/destack-sh/destack/blob/main/language/library/src/runtime/world.ds#L67-L74)

## Members

### `engine: Engine`

Optional engine preference.

### `execution: Execution`

Optional execution preference.

### `labels: [Label]`

Optional world labels.
