mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
Fix other interface classes naming convention
This commit is contained in:
16
js/entity/KeyBindingEntity.js
Normal file
16
js/entity/KeyBindingEntity.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import IEntity from "./IEntity"
|
||||
|
||||
export default class KeyBindingEntity extends IEntity {
|
||||
|
||||
static attributes = {
|
||||
bCtrlDown: false,
|
||||
bAltDown: false,
|
||||
bShiftDown: false,
|
||||
Key: String,
|
||||
CommandName: String,
|
||||
}
|
||||
|
||||
getAttributes() {
|
||||
return KeyBindingEntity.attributes
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user