]> git.r.bdr.sh - rbdr/lissajous/blob - lib/components/configuration.js
f5787ab0f72220bf17598319bf672848273ff902
[rbdr/lissajous] / lib / components / configuration.js
1 import { Component } from '@serpentity/serpentity';
2
3 /**
4 * Stores global behavior configuration that can be adjusted on the go. For
5 * static configuration see lib/config.js instead.
6 */
7 export default class Configuration extends Component {
8 constructor(config) {
9
10 super(config);
11 this.lineLength = this.lineLength || 500;
12 }
13 };