Quote Originally Posted by DarknessX
Hmmmm, that is quite interesting... Mind you, I don't think it will work, however, because even though it will give me all 4 corners, it has no way of telling me that the path turns left, or goes straight, or both...
of course it can

use types

Code:
type
  title = record
   dir : TITLEdirection;
   type : TITLEtype;
  end;

type
 TITLEdirection = (up , down, left, right, lefttop, leftbottom, righttop, rightbottom);
type
 TITLEtype = (grass, vertical, horizontal, turnleft, turnright);

// THIS IS ONLY AN EXAMPLE
// YOU DONT NEED 2 THINGS THAT SAY SAME THING
then makes an 2 dimension array of "title" type, or, if you don't want more things then type then "TITLEdirection"