blob: eaee271a9d9c42f5ce212220995f2847efb00951 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import { Node } from '@serpentity/serpentity';
import GrabAreaComponent from '../components/grab_area';
/**
* Node identifying an entity that have a physical grab area
*
* @extends {external:Serpentity.Node}
* @class GrabAreaNode
*/
export default class GrabAreaNode extends Node {
}
/**
* Holds the types that are used to identify an entity with a grab
* area
*
* @property {object} types
* @name types
* @memberof GrabAreaNode
*/
GrabAreaNode.types = {
grabArea: GrabAreaComponent
};
|