/** Two vectors creating a rectangle in 2d space */
export interface IBounds {
	xStart: number
	yStart: number
	xEnd: number
	yEnd: number
}
