public bool MapSectionDrawn(int x, int y) { if (x < 0 || x >= this.width || (y < 0 || y >= this.height)) return false; return this.data[y * this.width + x][2]; }