mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
11 lines
169 B
TypeScript
11 lines
169 B
TypeScript
|
|
/** Utility class for creating looping conditions */
|
|
declare class ILoopingConditionContext
|
|
{
|
|
retrigger(): void;
|
|
|
|
readonly isStopped: boolean;
|
|
|
|
release(): void;
|
|
}
|