PrinceGame.Level.Level C# (CSharp) Method

Level() public method

public Level ( int sizeRow, int sizeColumn ) : System
sizeRow int
sizeColumn int
return System
        public Level(int sizeRow, int sizeColumn)
        {
            rows = new RoomRow[sizeRow];

            for (int x = 0; x <= rows.Count() - 1; x++) {
            rows[x] = new RoomRow(sizeColumn);

            }
        }

Same methods

Level::Level ( ) : System