blob: 6cbfb080cca12dfd0bb5a5eb315cde4c1a7f068d (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { Component, ComponentNames } from '.';
export class Jump extends Component {
public canJump: boolean;
constructor() {
super(ComponentNames.Jump);
this.canJump = false;
}
}
|