UNPKG

arx-level-generator

Version:
13 lines (12 loc) 370 B
import { ScriptProperty } from '../ScriptProperty.js'; /** * A ScriptProperty for specifying whether an entity has a shadow or not * * @extends ScriptProperty * @see https://wiki.arx-libertatis.org/Script:setshadow */ export declare class Shadow extends ScriptProperty<boolean> { toString(): string; static get on(): Shadow; static get off(): Shadow; }