]>
Commit | Line | Data |
---|---|---|
1 | import { Node } from '@serpentity/serpentity'; | |
2 | ||
3 | import BodyComponent from '../components/body'; | |
4 | import ElasticComponent from '../components/elastic'; | |
5 | ||
6 | /** | |
7 | * Node identifying an entity that is an elastic physical body | |
8 | * | |
9 | * @extends {external:Serpentity.Node} | |
10 | * @class ElasticNode | |
11 | */ | |
12 | export default class ElasticNode extends Node { | |
13 | ||
14 | } | |
15 | ||
16 | /** | |
17 | * Holds the types that are used to identify an elastic entity | |
18 | * | |
19 | * @property {object} types | |
20 | * @name types | |
21 | * @memberof ElasticNode | |
22 | */ | |
23 | ElasticNode.types = { | |
24 | body: BodyComponent, | |
25 | elastic: ElasticComponent | |
26 | }; | |
27 |