mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-05-13 15:27:30 +08:00
Fix other interface classes naming convention
This commit is contained in:
32
js/entity/KeyBinding.js → js/entity/KeyBindingEntity.js
Executable file → Normal file
32
js/entity/KeyBinding.js → js/entity/KeyBindingEntity.js
Executable file → Normal file
@@ -1,16 +1,16 @@
|
||||
import IEntity from "./IEntity"
|
||||
|
||||
export default class KeyBinding extends IEntity {
|
||||
|
||||
static attributes = {
|
||||
bCtrlDown: false,
|
||||
bAltDown: false,
|
||||
bShiftDown: false,
|
||||
Key: String,
|
||||
CommandName: String,
|
||||
}
|
||||
|
||||
getAttributes() {
|
||||
return KeyBinding.attributes
|
||||
}
|
||||
}
|
||||
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