Davide Tantillo 93c56d08d0 c3 backup
2025-11-03 15:16:29 +01:00

10 lines
380 B
TypeScript

/** Represents the Shadow Caster behavior.
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/behavior-interfaces/shadow-caster | IShadowCasterBehaviorInstance documentation } */
declare class IShadowCasterBehaviorInstance<InstType> extends IBehaviorInstance<InstType>
{
height: number;
tag: string;
isEnabled: boolean;
}