jumpstorm/engine/components/Jump.ts

11 lines
196 B
TypeScript
Raw Normal View History

2023-08-25 18:48:17 -04:00
import { Component, ComponentNames } from '.';
2023-07-19 23:38:24 -04:00
export class Jump extends Component {
public canJump: boolean;
constructor() {
super(ComponentNames.Jump);
this.canJump = false;
}
}