Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- type
- RW_CheckPoint = Record
- till : function : Boolean;
- color,tolerance : Integer;
- end;
- function RW_noop : Boolean;
- begin
- Result := false;
- end;
- function RW_Point(c,t : Integer; WalkUntil : function : Boolean) : RW_CheckPoint;
- begin
- with Result do
- begin
- color := c;
- t := tolerance;
- till := WalkUntil;
- end;
- end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement