Files
ueblueprint/js/element/ColorHandlerElement.js
2023-03-23 16:24:32 +01:00

20 lines
559 B
JavaScript

import ColorHandlerTemplate from "../template/ColorHandlerTemplate.js"
import IDraggableControlElement from "./IDraggableControlElement.js"
/** @extends {IDraggableControlElement<Object, ColorHandlerTemplate>} */
export default class ColorHandlerElement extends IDraggableControlElement {
constructor() {
super()
super.initialize({}, new ColorHandlerTemplate())
}
static newObject() {
return new ColorHandlerElement()
}
initialize() {
// Initialized in the constructor, this method does nothing
}
}