UNPKG

arx-level-generator

Version:
13 lines (12 loc) 406 B
import { ScriptProperty } from '../ScriptProperty.js'; /** * A ScriptProperty for specifying whether an Entity can be collided with or can be passed through. * * @extends ScriptProperty * @see https://wiki.arx-libertatis.org/Script:collision */ export declare class Collision extends ScriptProperty<boolean> { toString(): string; static get on(): Collision; static get off(): Collision; }