starblast-modding
Version:
A powerful library for interacting with the Starblast Modding API
20 lines (16 loc) • 319 B
JavaScript
;
const UIBasicShapeElement = require("./BasicShape.js");
/**
* The UI Box Element instance
* @extends {UIBasicShapeElement}
* @since 1.4.2-alpha6
*/
class UIBoxElement extends UIBasicShapeElement {
toJSON () {
return {
type: "box",
...super.toJSON()
}
}
}
module.exports = UIBoxElement;