summaryrefslogtreecommitdiff
path: root/src/engine/components/Modal.ts
blob: 64b2703eb6bda2187986c07421a7f3ec13c3eb16 (plain)
1
2
3
4
5
6
7
8
import { Component, ComponentNames } from ".";
import { ModalInitState } from "../systems";

export class Modal extends Component {
  constructor(public initState: ModalInitState) {
    super(ComponentNames.Modal);
  }
}