arx-level-generator
Version:
A tool for creating Arx Fatalis maps
13 lines (12 loc) • 441 B
TypeScript
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;
}