UNPKG

440 BTypeScriptView Raw
1import type { Container } from "../Container";
2import type { Particle } from "../Particle";
3import type { IDelta } from "../Interfaces/IDelta";
4export declare class Mover {
5 private readonly container;
6 private readonly particle;
7 constructor(container: Container, particle: Particle);
8 move(delta: IDelta): void;
9 private moveParticle;
10 private applyPath;
11 private moveParallax;
12 private getProximitySpeedFactor;
13}