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