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