interface IParticleMover {
    init(particle): void;
    isEnabled(particle): boolean;
    move(particle, delta): void;
}

Methods