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