mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
20 lines
553 B
JavaScript
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
|
|
}
|
|
}
|