# Functions
Add adds an entity to the entity registry.
AddBoolComponent adds a boolean component to an entity.
AddBoolToMapComponent adds a boolean component to a map component.
AddInt64Component adds an integer64 component to an entity.
AddInt64ToMapComponent adds an integer64 component to a map component.
AddIntComponent adds an integer component to an entity.
AddIntToMapComponent adds an integer component to a map component.
AddMapComponent adds a map component to an entity.
AddOrUpdateIntInMapComponent adds or updates an integer component to a map component.
AddOrUpdateStringComponent adds or updates a string component to an entity.
AddOrUpdateStringInMapComponent adds or updates a string component to a map component.
AddSetComponent adds a set component to an entity.
AddStringComponent adds a string component to an entity.
AddStringToMapComponent adds a string component to a map component.
AddToInt64SetComponent adds an integer64 value to a set component.
AddToIntSetComponent adds an integer value to a set component.
AddToStringSetComponent adds a string value to a set component.
AddWithId adds an entity with the provided id to the entity registry.
AllComponents returns all the components for the entity.
ComponentExists checks if a component exists.
Create will create an entity of the given entity type, without adding it to the entity registry.
CreateAndAdd creates an entity of the given entity type, adds it to the entity registry, and returns the id of the entity.
ElementInSetComponentExists checks if a value is in a set component.
No description provided by the author
No description provided by the author
Exists checks if an entity with the given id exists.
GetBoolComponent returns a boolean component from an entity.
GetInt64Component returns an integer64 component from an entity.
GetInt64FromMapComponent returns the int64 value of an element in a map component.
GetIntComponent returns an integer component from an entity.
GetIntFromMapComponent returns the int value of an element in a map component.
GetMapComponent returns a map component from an entity.
GetStringComponent returns the value of the string component.
GetStringFromMapComponent returns the string value of an element in a map component.
IsEntityTypeRegistered checks if an entity type is registered.
Register registers an entity type.
Remove removes an entity from the entity registry.
RemoveComponent removes the component from the entity.
RemoveFromInt64SetComponent removes an integer64 value from a set component.
RemoveFromIntSetComponent removes an integer value from a set component.
RemoveFromStringSetComponent removes a string value from a set component.
Replace removes and then replaces an entity in the entity registry.
Start starts the entity registry.
Stop stops the entity registry.
Update updates an entity in the entity registry.
UpdateBoolComponent updates a bool component in the entity registry.
UpdateBoolInMapComponent updates a bool component in a map component.
UpdateInt64Component updates an integer64 component in the entity registry.
UpdateInt64InMapComponent updates an integer64 component in a map component.
UpdateIntComponent updates an integer component in the entity registry.
UpdateIntInMapComponent updates an integer component in a map component.
UpdateOrAdd updates an entity in the entity registry.
UpdateStringComponent updates a string component in the entity registry.
UpdateStringInMapComponent updates a string component in a map component.