1 2 3 4 5 6 7 8 9 10 11
import { Component, ComponentNames, Velocity } from "."; export class Control extends Component { public controlVelocity: Velocity; constructor(controlVelocity: Velocity = new Velocity()) { super(ComponentNames.Control); this.controlVelocity = controlVelocity; } }