blob: 9b4031fdecfdaae5f7c4063d0bdaa4b1cf52eddc (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { Component, ComponentNames } from ".";
import { ModalInitState } from "../systems";
export class Modal extends Component {
constructor(
public initState: ModalInitState
) {
super(ComponentNames.Modal);
}
}
|