]>
Commit | Line | Data |
---|---|---|
6768cd46 RBR |
1 | import { Node } from '@serpentity/serpentity'; |
2 | ||
3 | import DashComponent from '../components/dash'; | |
4 | import PixiContainerComponent from '../components/pixi_container'; | |
5 | ||
6 | /** | |
7 | * Node identifying an entity that can dash and is drawn | |
8 | * | |
9 | * @extends {external:Serpentity.Node} | |
10 | * @class DrawnDasherNode | |
11 | */ | |
12 | export default class DrawnDasherNode extends Node { | |
13 | ||
14 | }; | |
15 | ||
16 | /** | |
17 | * Holds the types that are used to identify a drawn dasher entity | |
18 | * | |
19 | * @property {object} types | |
20 | * @name types | |
21 | * @memberof DrawnDasherNode | |
22 | */ | |
23 | DrawnDasherNode.types = { | |
24 | container: PixiContainerComponent, | |
25 | dash: DashComponent | |
26 | }; | |
27 |