@woosh/meep-engine 2.94.5 → 2.94.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "description": "Fully featured ECS game engine written in JavaScript",
6
6
  "type": "module",
7
7
  "author": "Alexander Goldring",
8
- "version": "2.94.5",
8
+ "version": "2.94.6",
9
9
  "main": "build/meep.module.js",
10
10
  "module": "build/meep.module.js",
11
11
  "exports": {
@@ -6,6 +6,11 @@ export default class AABB2 {
6
6
  x1: number
7
7
  y1: number
8
8
 
9
+ readonly centerX: number
10
+ readonly centerY: number
11
+ readonly width: number
12
+ readonly height: number
13
+
9
14
  constructor(x0: number, y0: number, x1: number, y1: number)
10
15
 
11
16
  constructor()