Hi, its smee again!
Im having a few probs with using If, with my boundary checking which needs to see if 4 conditions are within range:
In Basic:
if (x>0) and (x<wwidth-1) and (y>0) and (y<height-1) then
perform_action()
end if
My attempt in CPP:
// is this correct?. if it is then something else is a foot, should be about 12 inches ;)
if (x>0)
if (x<wwidth-1)
if (y>0)
if (y<height-1)
perform_action();
Thanks alot,
Mc Clyde.