mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
* Fix folder name typo * Smaller fixes * Shortcut rename to Shortcuts * Fix quoted attributes in UE 5.3 * remove KeyboardShortcutAction * Remove more trivial classes * Rename IKeyboardShortcut * Node delete shortcut
15 lines
213 B
JavaScript
Executable File
15 lines
213 B
JavaScript
Executable File
export default class Action {
|
|
|
|
#blueprint
|
|
get blueprint() {
|
|
return this.#blueprint
|
|
}
|
|
|
|
constructor(blueprint) {
|
|
this.#blueprint = blueprint
|
|
}
|
|
|
|
fire() {
|
|
}
|
|
}
|