mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-14 17:14:41 +08:00
* Entities semplification WIP * Bug fixes after entity semplification * Fix object serialization
20 lines
340 B
JavaScript
20 lines
340 B
JavaScript
import IEntity from "../../js/entity/IEntity.js"
|
|
|
|
export default class Entity1 extends IEntity {
|
|
|
|
static attributes = {
|
|
a: {
|
|
type: Number,
|
|
default: 8,
|
|
},
|
|
b: {
|
|
type: Number,
|
|
default: 9,
|
|
},
|
|
}
|
|
|
|
constructor(values = {}) {
|
|
super(values)
|
|
}
|
|
}
|