improcket/js/gui/frame.mjs
2018-03-02 19:37:24 +00:00

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';
}
}