9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
import * as gui from './index';
|
|
import GuiElement from './element';
|
|
|
|
export default class GuiFrame extends GuiElement {
|
|
constructor(x, y, width, height, options) {
|
|
super(x, y, width, height, options);
|
|
this.type = 'frame';
|
|
}
|
|
}
|