arx-level-generator
Version:
A tool for creating Arx Fatalis maps
13 lines (12 loc) • 432 B
TypeScript
import { Expand } from 'arx-convert/utils';
import { Entity, EntityConstructorPropsWithoutSrc } from '../../Entity.js';
type LeverConstructorProps = Expand<EntityConstructorPropsWithoutSrc & {
isSilent?: boolean;
}>;
export declare class Lever extends Entity {
private propIsPulled;
constructor({ isSilent, ...props }?: LeverConstructorProps);
get isPulled(): boolean;
set isPulled(value: boolean);
}
export {};