/** * Adds `x`, `y` and `angle` to entity, * describing its location and rotation, * relative to its parent. * @category Trait */ export declare class LocationTrait { /** * X offset relative to entity's parent * @category LocationTrait */ x: number; /** * Y offset relative to entity's parent * @category LocationTrait */ y: number; /** * Rotation in degrees * @category LocationTrait */ angle: number; }