bind method

void bind(
  1. Archetype archetype,
  2. List<int> columns,
  3. int row,
  4. Map<Type, int> typeIndices,
)

Implementation

void bind(
  Archetype archetype,
  List<int> columns,
  int row,
  Map<Type, int> typeIndices,
) {
  _archetype = archetype;
  _columns = columns;
  _row = row;
  _typeIndices = typeIndices;
}