improcket/src/gui/frame.ts
2024-05-13 19:25:49 +02:00

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