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; } }