summaryrefslogtreecommitdiff
path: root/engine/components/Component.ts
blob: 73319826838f434b410d61ed00fbc850963e7eef (plain)
1
2
3
4
5
6
7
export abstract class Component {
  public readonly name: string;

  constructor(name: string) {
    this.name = name;
  }
}