summaryrefslogtreecommitdiff
path: root/engine/components/Control.ts
diff options
context:
space:
mode:
Diffstat (limited to 'engine/components/Control.ts')
-rw-r--r--engine/components/Control.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/components/Control.ts b/engine/components/Control.ts
index 1e782ee..fb7b916 100644
--- a/engine/components/Control.ts
+++ b/engine/components/Control.ts
@@ -1,11 +1,11 @@
import { Component, ComponentNames, Velocity } from ".";
export class Control extends Component {
- public controlVelocity: Velocity;
+ public controlVelocityComponent: Velocity;
- constructor(controlVelocity: Velocity = new Velocity()) {
+ constructor(controlVelocityComponent: Velocity = new Velocity()) {
super(ComponentNames.Control);
- this.controlVelocity = controlVelocity;
+ this.controlVelocityComponent = controlVelocityComponent;
}
}