mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
14 lines
402 B
JavaScript
14 lines
402 B
JavaScript
import AttributeInfo from "../../js/entity/AttributeInfo.js"
|
|
import ObjectEntity from "../../js/entity/ObjectEntity.js"
|
|
import EntityF from "./EntityF.js"
|
|
|
|
// @ts-expect-error
|
|
export default class Entity5 extends ObjectEntity {
|
|
|
|
static attributes = {
|
|
key1: AttributeInfo.createType(String),
|
|
key2: AttributeInfo.createType(EntityF),
|
|
}
|
|
static grammar = this.createGrammar()
|
|
}
|