Source code for xecs._internal.entity_id

from xecs._internal.component import Component
from xecs.xecs import UInt32


[docs] class EntityId(Component): """ A component that stores the entity id. """ value: UInt32 """The entity id."""