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

export class Life extends Component {
  public alive: boolean = true;

  constructor(alive: boolean) {
    super(ComponentNames.Life);

    this.alive = alive;
  }
}