mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 00:24:48 +08:00
18 lines
416 B
JavaScript
18 lines
416 B
JavaScript
import IMouseClickDrag from "./IMouseClickDrag.js"
|
|
|
|
/**
|
|
* @typedef {import("../../element/IDraggableElement.js").default} IDraggableElement
|
|
*/
|
|
|
|
/**
|
|
* @template {IDraggableElement} T
|
|
* @extends {IMouseClickDrag<T>}
|
|
*/
|
|
export default class MouseIgnore extends IMouseClickDrag {
|
|
|
|
constructor(target, blueprint, options = {}) {
|
|
options.consumeEvent = true
|
|
super(target, blueprint, options)
|
|
}
|
|
}
|