function CellColoring(north, east, south, west) {
	this.north = north;
	this.east = east;
	this.south = south;
	this.west = west;
}

