import { Component } from '@serpentity/serpentity'; /* * Weight component, stores the magnitude of weight * Public members: * -weight // magnitude of weight */ export default class Weight extends Component { constructor(config) { super(config) this.weight = this.weight || 0; } };