UNPKG

arx-level-generator

Version:
13 lines (12 loc) 405 B
import { ScriptProperty } from '../ScriptProperty.js'; /** * A ScriptProperty for setting whether an Entity can be interacted with or not * * @extends ScriptProperty * @see https://wiki.arx-libertatis.org/Script:setinteractivity */ export declare class Interactivity extends ScriptProperty<boolean> { toString(): string; static get on(): Interactivity; static get off(): Interactivity; }