mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-16 10:54:42 +08:00
20 lines
391 B
JavaScript
20 lines
391 B
JavaScript
import IEntity from "../../js/entity/IEntity.js"
|
|
import Union from "../../js/entity/Union.js"
|
|
|
|
export default class EntityF extends IEntity {
|
|
|
|
static lookbehind = new Union("Foo", "Bar")
|
|
static attributes = {
|
|
arg1: {
|
|
type: Number,
|
|
},
|
|
arg2: {
|
|
type: String,
|
|
},
|
|
}
|
|
|
|
constructor(values = {}) {
|
|
super(values)
|
|
}
|
|
}
|