jumpstorm/engine/components/Jump.ts

11 lines
196 B
TypeScript
Raw Normal View History

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