mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-26 22:49:01 +08:00
9 lines
334 B
TypeScript
9 lines
334 B
TypeScript
|
|
/** Represents the Solid behavior.
|
|
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/behavior-interfaces/solid | ISolidBehaviorInstance documentation } */
|
|
declare class ISolidBehaviorInstance<InstType> extends IBehaviorInstance<InstType>
|
|
{
|
|
tags: string;
|
|
isEnabled: boolean;
|
|
}
|