Files
ueblueprint/js/element/ColorHandlerElement.js
2022-12-24 15:29:12 +01:00

20 lines
553 B
JavaScript

import ColorHandlerTemplate from "../template/ColorHandlerTemplate"
import IDraggableControlElement from "./IDraggableControlElement"
/** @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
}
}