diff --git a/lib/src/interfaces/scene.ts b/lib/src/interfaces/scene.ts index 7049146..6a7ac06 100644 --- a/lib/src/interfaces/scene.ts +++ b/lib/src/interfaces/scene.ts @@ -1,10 +1,10 @@ import { Fill } from "./fill"; -import { IBaseDrawObject, IDrawNode, IRectangle } from "./objects"; +import { DrawLeafs, IDrawNode, IRectangleDrawObject } from "./objects"; export interface IScene { node: IDrawNode; - selection?: IRectangle; - spotlight: IRectangle[]; + selection?: IDrawNode; + spotlight: IRectangleDrawObject[]; background: Fill; - static: IBaseDrawObject[]; + static: DrawLeafs[]; } diff --git a/lib/src/package.json b/lib/src/package.json index 679d2ed..0e5fb3b 100644 --- a/lib/src/package.json +++ b/lib/src/package.json @@ -1,6 +1,6 @@ { "name": "@gxc-solutions/renderer-base", - "version": "0.0.7", + "version": "0.0.8", "main": "index.js", "author": "GXC Solutions", "publishConfig": {