mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-17 11:44:44 +08:00
19 lines
342 B
JavaScript
19 lines
342 B
JavaScript
import EntityF from "./EntityF.js"
|
|
import IEntity from "../../js/entity/IEntity.js"
|
|
|
|
export default class Entity5 extends IEntity {
|
|
|
|
static attributes = {
|
|
key1: {
|
|
type: String,
|
|
},
|
|
key2: {
|
|
type: EntityF,
|
|
},
|
|
}
|
|
|
|
static {
|
|
this.cleanupAttributes(this.attributes)
|
|
}
|
|
}
|