import { Component } from '@serpentity/serpentity'; export default class TripleFrequency extends Component { constructor(config) { super(config); this.a = Math.random(); this.b = Math.random(); this.c = Math.random(); } };