| 25 | export type ScaleCallback = (event:ScaleEvent) => void; |
| 26 | |
| 27 | export interface EntityResizeEvent { |
| 28 | offset: Point; |
| 29 | gameSize: Point; |
| 30 | scale: Point; |
| 31 | viewArea: ViewAreaRect; |
| 32 | } |
| 33 | |
| 34 | export interface ScaledEntity { |
| 35 | onResize(event: EntityResizeEvent):void |
nothing calls this directly
no outgoing calls
no test coverage detected