blob: 0b4076779f21ef71f607767b6788166c167f521d (
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;
}
}
|