mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
10 lines
260 B
JavaScript
10 lines
260 B
JavaScript
/** @typedef {import("./IEntity").AttributeDeclarations} AttributeDeclarations */
|
|
|
|
export default class SubAttributesDeclaration {
|
|
|
|
/** @param {AttributeDeclarations} attributes */
|
|
constructor(attributes) {
|
|
this.attributes = attributes
|
|
}
|
|
}
|