class Flock { constructor() { this.boids = []; } run() { for (let i = 0; i < this.boids.length; i++) { this.boids[i].run(boids); } } addBoid(boid) { this.boids.push(boid); } }