internal MapSector(ICoordinates mom,ICoordinates I,int roadlength) { i = 0; this.mom = new ICoordinates[3]; this[i]= mom; this.xy = I; roadLength = roadlength; type = TypesOfField.WALL; }
//Builder internal MapSector( ) { this.mom = new ICoordinates[3]; this.mom = null; this.xy = null; roadLength = 0; i = 0; type = TypesOfField.NOTHING; }