export default class Coord { private x private y private width private height constructor (x, y, width, height) { this.x = x this.y = y this.width = width this.height = height } contain = (x, y) => { return ( x >= this.x && y >= this.y && x <= this.x + this.width && y <= this.y + this.height ) } }