blob: fb7b9164f25540a353cfe76c44c23d772e3e9940 (
plain) (
blame)
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;
}
}
|