I have checked out the following link:
http://www.ehow.com/how_12134402_detect-rectangle-collision-java.html
I have made the 2 rectangles around my player and house but am confused about what my if statement should look like, I have a boolean set on x meaning if my rectangles intersect x will return true so I know I start with
if(x=true){
//what to type in here for my collision?
}
This collision is required for my 2D state change game, I have a player that moves around with key inputs and a house on the map, I want my player not to be able to walk through the house.
Thank you in advance.
