12 lines
254 B
TypeScript
Raw Normal View History

2024-03-01 19:45:33 -07:00
import { Component, ComponentNames } from ".";
export class Control extends Component {
public isControllable: boolean = true;
constructor(isControllable = true) {
super(ComponentNames.Control);
this.isControllable = isControllable;
}
}