mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 16:44:49 +08:00
20 lines
391 B
JavaScript
20 lines
391 B
JavaScript
// @ts-check
|
|
|
|
import IdentifierEntity from "./IdentifierEntity"
|
|
import IEntity from "./IEntity"
|
|
|
|
export default class KeyBindingEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
ActionName: "",
|
|
bShift: false,
|
|
bCtrl: false,
|
|
bAlt: false,
|
|
bCmd: false,
|
|
Key: IdentifierEntity,
|
|
}
|
|
constructor(options = {}) {
|
|
super(options)
|
|
}
|
|
}
|