2023-02-17 11:06:01 +01:00

8 lines
174 B
JavaScript

import { ValueWithRandom } from "tsparticles-engine";
export class SplitFactor extends ValueWithRandom {
constructor() {
super();
this.value = 3;
}
}