mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
18 lines
350 B
JavaScript
18 lines
350 B
JavaScript
import IEntity from "./IEntity"
|
|
|
|
export default class VectorEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
X: Number,
|
|
Y: Number,
|
|
Z: Number,
|
|
}
|
|
|
|
constructor(options = {}) {
|
|
super(options)
|
|
/** @type {Number} */ this.X
|
|
/** @type {Number} */ this.Y
|
|
/** @type {Number} */ this.Z
|
|
}
|
|
}
|