mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-14 00:54:48 +08:00
17 lines
409 B
JavaScript
17 lines
409 B
JavaScript
import IMouseClickDrag from "./IMouseClickDrag"
|
|
|
|
/**
|
|
* @typedef {import("../../element/IDraggableElement").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)
|
|
}
|
|
} |