# Packages
No description provided by the author
# Functions
AddBoolComponent adds a boolean component to an entity.
AddBoolToMapComponent adds a boolean component to a map component.
AddEntity adds an entity to the entity registry.
AddEntityWithID adds an entity with the provided id to the entity registry.
AddInt64ComponentToEntity 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.
AddMapComponentToEntity adds a map component to an entity.
AddOrUpdateIntInMapComponent adds or updates an integer component to a map component.
AddOrUpdateStringComponentToEntity 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.
AddStringComponentToEntity 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.
ComponentExists checks if a component exists.
CreateEntity will create an entity of the given entity type, without adding it to the entity registry.
EntitiesWithComponent returns a list of entities that have the given component.
EntitiesWithComponentValue returns a list of entities that have the given component and value.
EntityExists checks if an entity with the given id exists.
GetBoolComponent returns a boolean component from an entity.
GetHashComponent returns a hash 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.
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.
RegisterEntityType registers an entity type.
RegisterSystem registers a system with the registry.
RemoveComponent removes the component from the entity.
RemoveEntity removes an entity from the entity registry.
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.
ReplaceEntity removes and then replaces an entity in the entity registry.
UpdateBoolComponent updates a bool component in the entity registry.
UpdateBoolInMapComponent updates a bool component in a map component.
UpdateEntity updates an entity in the entity registry.
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.
UpdateOrAddEntity 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.
# Variables
No description provided by the author