import { Entity } from '../../entities/entity.js'; import { EntitySystem } from '../../entities/system.js'; export interface GrappleEntity extends Entity { grappleState: 'fly' | 'attached'; } declare module '../../entities/entity.js' { interface Entity { grapple?: Entity; } } export declare function Grapple_Think(player: Entity, sys: EntitySystem): void; export declare function ResetGrapple(player: Entity, sys: EntitySystem): void; //# sourceMappingURL=grapple.d.ts.map