]> git.r.bdr.sh - rbdr/serpentity-lib/blame - components/weight/index.js
Publish
[rbdr/serpentity-lib] / components / weight / index.js
CommitLineData
582cea2a
BB
1import { Component } from '@serpentity/serpentity';
2
3/*
4 * Weight component, stores the magnitude of weight
5 * Public members:
6 * -weight <Number> // magnitude of weight
7 */
8export default class Weight extends Component {
9 constructor(config) {
10
11 super(config)
12
13 this.weight = this.weight || 0;
14 }
15};