PrinceGame.Level.Level C# (CSharp) Method

Level() public method

public Level ( ) : System
return System
        public Level()
        {
            rows = new RoomRow[10];

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

Same methods

Level::Level ( int sizeRow, int sizeColumn ) : System