> For the complete documentation index, see [llms.txt](https://kinematicsoup.gitbook.io/reactor/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kinematicsoup.gitbook.io/reactor/api-reference/ks.reactor.client.unity/ks.reactor.client.unity.ksexistencemodes.md).

# Enum ksExistenceModes

Namespace: [KS.Reactor.Client.Unity](/reactor/api-reference/ks.reactor.client.unity.md)\
Assembly: KSUnity-Source.dll

Does the component exist on the client, server, or both?

```csharp
public enum ksExistenceModes
```

## Fields

`CLIENT_AND_SERVER = 0`

The component is included in server configs and is not deleted on the client when the entity is created.

`CLIENT_ONLY = 1`

The component is not included in server configs.

`SERVER_ONLY = 2`

The component is deleted on the client when the entity is created.
