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