diff options
Diffstat (limited to 'client/lib/components/Jump.ts')
-rw-r--r-- | client/lib/components/Jump.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/lib/components/Jump.ts b/client/lib/components/Jump.ts new file mode 100644 index 0000000..0b40767 --- /dev/null +++ b/client/lib/components/Jump.ts @@ -0,0 +1,10 @@ +import { Component, ComponentNames } from "."; + +export class Jump extends Component { + public canJump: boolean; + + constructor() { + super(ComponentNames.Jump); + this.canJump = false; + } +} |