AI/behaviours/flocking.js

import { Behaviour } from "./behaviour.js"
import { Vector2 } from "../../math/index.js"


/**
 * not complete.
 * 
 * @augments Behaviour
 */
export class Flock extends Behaviour{
  constructor() {
    super()
  }
  /**
   * @inheritdoc
   * @param { Vector2} target
   * @param {number} inv_dt
   * @returns Vector2 the first parameter
   */
  calc(target,inv_dt) {

  }
}