import { Node } from '@serpentity/serpentity'; import BodyComponent from '../components/body'; import ElasticComponent from '../components/elastic'; /** * Node identifying an entity that is an elastic physical body * * @extends {external:Serpentity.Node} * @class ElasticNode */ export default class ElasticNode extends Node { } /** * Holds the types that are used to identify an elastic entity * * @property {object} types * @name types * @memberof ElasticNode */ ElasticNode.types = { body: BodyComponent, elastic: ElasticComponent };