Files
ueblueprint/js/entity/KeyBinding.js
barsdeveloper 7704850cf6 Refactoring
2022-01-05 21:48:45 +01:00

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
}
}