8 lines
174 B
JavaScript
8 lines
174 B
JavaScript
import { ValueWithRandom } from "tsparticles-engine";
|
|
export class SplitFactor extends ValueWithRandom {
|
|
constructor() {
|
|
super();
|
|
this.value = 3;
|
|
}
|
|
}
|