9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
import * as gui from './index.mjs';
|
|
import GuiElement from './element.mjs';
|
|
|
|
export default class GuiFrame extends GuiElement {
|
|
constructor(x, y, w, h, options) {
|
|
super(x, y, w, h, options);
|
|
this.type = 'frame';
|
|
}
|
|
}
|