import { Node } from '@serpentity/serpentity'; import ControlMapComponent from '../components/control_map'; /** * Node identifying an entity that has a control mapping * * @extends {external:Serpentity.Node} * @class ControllableNode */ export default class ControllableNode extends Node { } /** * Holds the types that are used to identify a controllable entity * * @property {object} types * @name types * @memberof ControllableNode */ ControllableNode.types = { controlMap: ControlMapComponent };