private void Start()
 {
     if (_fakeRooms)
     {
         for (int x = 0; x < _numFakeRooms; x++)
         {
             RoomListing listing = Instantiate(_roomListingBtn, _content);
             if (listing != null)
             {
                 listing.SetFakeRoomInfo("Room " + x.ToString(), Random.Range(2, 10));
             }
             listings.Add(listing);
         }
     }
 }