mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
17 lines
325 B
JavaScript
Executable File
17 lines
325 B
JavaScript
Executable File
import Entity from "./Entity"
|
|
|
|
export default class KeyBinding extends Entity {
|
|
|
|
static attributes = {
|
|
bCtrlDown: false,
|
|
bAltDown: false,
|
|
bShiftDown: false,
|
|
Key: String,
|
|
CommandName: String,
|
|
}
|
|
|
|
getAttributes() {
|
|
return KeyBinding.attributes
|
|
}
|
|
}
|