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