mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
21 lines
439 B
JavaScript
21 lines
439 B
JavaScript
import AttributeInfo from "../../js/entity/AttributeInfo.js"
|
|
import IEntity from "../../js/entity/IEntity.js"
|
|
|
|
export default class Entity1 extends IEntity {
|
|
|
|
static attributes = {
|
|
a: new AttributeInfo({
|
|
type: Number,
|
|
default: 8,
|
|
}),
|
|
b: new AttributeInfo({
|
|
type: Number,
|
|
default: 9,
|
|
}),
|
|
}
|
|
|
|
constructor(values = {}) {
|
|
super(values)
|
|
}
|
|
}
|