| 107 | * @standard |
| 108 | */ |
| 109 | export interface IHitArea |
| 110 | { |
| 111 | /** |
| 112 | * Checks if the given coordinates are inside this hit area. |
| 113 | * @param {number} x - The x coordinate to check |
| 114 | * @param {number} y - The y coordinate to check |
| 115 | * @returns True if the coordinates are inside the hit area |
| 116 | */ |
| 117 | contains(x: number, y: number): boolean; |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Function type for handlers, e.g., onclick |
no outgoing calls
no test coverage detected