UNPKG

arx-level-generator

Version:
13 lines (12 loc) 441 B
import { Zone } from '../../Zone.js'; import { ScriptProperty } from '../ScriptProperty.js'; /** * A ScriptProperty for linking an Entity to a Zone. * A linked Zone will trigger `controlledzone_enter` and `controlledzone_leave` events on the Entity. * * @extends ScriptProperty * @see https://wiki.arx-libertatis.org/Script:setcontrolledzone */ export declare class ControlZone extends ScriptProperty<Zone> { toString(): string; }