|
import { Component } from "../core/world";
|
|
import { component } from "../utils/decorators";
|
|
|
|
@component({ variables: ['x', 'y', 'z'] })
|
|
export class Position extends Component<{ x: number, y: number, z: number }> {
|
|
constructor(x = 0, y = 0, z = 0) {
|
|
super({ x, y, z });
|
|
}
|
|
} |