UNPKG

487 BTypeScriptView Raw
1import type { Particle } from "../../Core/Particle";
2import type { Container } from "../../Core/Container";
3import type { IParticlesInteractor } from "../../Core/Interfaces/IParticlesInteractor";
4import type { IDelta } from "../../Core/Interfaces/IDelta";
5export declare class Infecter implements IParticlesInteractor {
6 private readonly container;
7 constructor(container: Container);
8 isEnabled(): boolean;
9 reset(): void;
10 interact(p1: Particle, delta: IDelta): void;
11}