component top-level constant

Component const component

Marks a class as an ECS component.

Components are pure data containers with no behavior. They are stored efficiently in archetype-based storage.

@component
class Position {
  double x;
  double y;
  Position(this.x, this.y);
}

Implementation

const component = Component();