Files
ueblueprint/tests/resources/Entity5.js
2024-03-24 17:30:50 +01:00

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()
}