summaryrefslogtreecommitdiff
path: root/src/engine/components/Pushable.ts
blob: b3d0dc4301d90e2987319da449d11526d5705ced (plain)
1
2
3
4
5
6
7
8
9
10
11
import { Component, ComponentNames } from ".";

export class Pushable extends Component {
  public pushable: boolean;

  constructor(pushable = false) {
    super(ComponentNames.Pushable);

    this.pushable = pushable;
  }
}