Talk:C-Sharp Example of Dungeon-Building Algorithm

From RogueBasin
Jump to navigation Jump to search

Why all the empty lines?

Isn't

public class dungen{
	//max size of the map
	private int xmax = 80; //80 columns
	private int ymax = 25; //25 rows

easier to read then:

public class dungen{

	//max size of the map

	private int xmax = 80; //80 columns

	private int ymax = 25; //25 rows

--Soyweiser 21:02, 31 January 2010 (UTC)