Files
ueblueprint/tests/resources/Entity1.js
barsdeveloper 1c2778fbf8 Still WIP
2024-05-28 16:44:39 +02:00

15 lines
367 B
JavaScript

import IEntity from "../../js/entity/IEntity.js"
import NumberEntity from "../../js/entity/NumberEntity.js"
export default class Entity1 extends IEntity {
static attributes = {
a: NumberEntity.withDefault(type => new type(8)),
b: NumberEntity.withDefault(type => new type(9)),
}
constructor(values = {}) {
super(values)
}
}