summaryrefslogtreecommitdiff
path: root/engine/components/Control.ts
blob: fb7b9164f25540a353cfe76c44c23d772e3e9940 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { Component, ComponentNames, Velocity } from ".";

export class Control extends Component {
  public controlVelocityComponent: Velocity;

  constructor(controlVelocityComponent: Velocity = new Velocity()) {
    super(ComponentNames.Control);

    this.controlVelocityComponent = controlVelocityComponent;
  }
}