class Texture { constructor(image = null, width = 0, height = 0) { this.image = image; this.width = width; this.height = height; } }