mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 00:24:48 +08:00
13 lines
252 B
JavaScript
13 lines
252 B
JavaScript
import IEntity from "./IEntity"
|
|
|
|
export default class KeyBindingEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
bCtrlDown: false,
|
|
bAltDown: false,
|
|
bShiftDown: false,
|
|
Key: String,
|
|
CommandName: String,
|
|
}
|
|
}
|