
let nextEntityId = 0;

export default function generateEntityId() {
  const id = nextEntityId;
  nextEntityId++;
  return id;
}
