spine-runtimes/spine-ts/spine-construct3/ts-defs/runtime/ILoopingConditionContext.d.ts
Davide Tantillo 93c56d08d0 c3 backup
2025-11-03 15:16:29 +01:00

11 lines
169 B
TypeScript

/** Utility class for creating looping conditions */
declare class ILoopingConditionContext
{
retrigger(): void;
readonly isStopped: boolean;
release(): void;
}