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

8 lines
189 B
JavaScript

import { ValueWithRandom } from "tsparticles-engine";
export class SplitRate extends ValueWithRandom {
constructor() {
super();
this.value = { min: 4, max: 9 };
}
}