I am making a game where the tiles for the level game are being rendered onto the screen with the blit
function and want the player to be able to collide with them. How would I go about doing this?
Just to make things clear, here is how I am rendering the Tiles I want to collide with:
screen.blit(tile_pngs[level[idx]], (x, y))