mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-18 20:34:54 +08:00
Generic unknown keys object entity
This commit is contained in:
14
js/entity/UnknownKeysEntity.js
Normal file
14
js/entity/UnknownKeysEntity.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import IEntity from "./IEntity"
|
||||
import TypeInitialization from "./TypeInitialization"
|
||||
|
||||
export default class UnknownKeysEntity extends IEntity {
|
||||
|
||||
static attributes = {
|
||||
lookbehind: new TypeInitialization(String, false, "", false, true)
|
||||
}
|
||||
|
||||
constructor(values = {}) {
|
||||
super(values)
|
||||
/** @type {String} */ this.lookbehind
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user