Fix other interface classes naming convention

This commit is contained in:
barsdeveloper
2022-02-27 13:02:21 +01:00
parent e8946745d6
commit b48b1228f4
29 changed files with 535 additions and 535 deletions

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