mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 16:44:49 +08:00
16 lines
279 B
JavaScript
16 lines
279 B
JavaScript
import IEntity from "./IEntity"
|
|
|
|
export default class Vector2DEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
X: 0,
|
|
Y: 0,
|
|
}
|
|
|
|
constructor(values) {
|
|
super(values)
|
|
/** @type {Number} */ this.X
|
|
/** @type {Number} */ this.Y
|
|
}
|
|
}
|