Files
ueblueprint/js/action/Actions.js
barsdeveloper ed43ee3edd Input refactoring (#12)
* 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
2023-08-11 02:48:50 +02:00

15 lines
213 B
JavaScript
Executable File

export default class Action {
#blueprint
get blueprint() {
return this.#blueprint
}
constructor(blueprint) {
this.#blueprint = blueprint
}
fire() {
}
}