blob: ee41cf8ec66c10ea0de99e4f4c2a8f8720ed995d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Component } from '@serpentity/serpentity';
/**
* Component that stores elastic properties
*
* @extends {external:Serpentity.Component}
* @class ElasticComponent
* @param {object} config a configuration object to extend.
*/
export default class ElasticComponent extends Component {
};
|