aystar.h
changeset 193 0a7025304867
parent 84 1e0721c29bad
child 1459 6c1f01803928
--- a/aystar.h	Fri Sep 10 18:54:23 2004 +0000
+++ b/aystar.h	Fri Sep 10 19:02:27 2004 +0000
@@ -107,7 +107,7 @@
 	AyStar_GetNeighbours* GetNeighbours;
 	AyStar_EndNodeCheck* EndNodeCheck;
 	AyStar_FoundEndNode* FoundEndNode;
-	
+
 	/* These are completely untouched by AyStar, they can be accesed by
 	 * the application specific routines to input and output data.
 	 * user_path should typically contain data about the resulting path
@@ -117,7 +117,7 @@
 	void *user_path;
 	void *user_target;
 	uint user_data[10];
-	
+
 	/* How many loops are there called before AyStarMain_Main gives
 	 * control back to the caller. 0 = until done */
 	byte loops_per_tick;
@@ -125,7 +125,7 @@
 	 *  0 = infinite */
 	uint max_path_cost;
 	/* The maximum amount of nodes that will be expanded, 0 = infinite */
-	uint max_search_nodes; 
+	uint max_search_nodes;
 
 	/* These should be filled with the neighbours of a tile by
 	 * GetNeighbours */
@@ -140,7 +140,7 @@
 	AyStar_Free* free;
 	AyStar_Clear* clear;
 	AyStar_CheckTile* checktile;
-	
+
 	/* These will contain the open and closed lists */
 
 	/* The actual closed list */
@@ -164,6 +164,6 @@
  * callling init_AyStar (see the declaration of AyStar for which fields are
  * internal */
 void init_AyStar(AyStar* aystar, Hash_HashProc hash, uint num_buckets);
-	
+
 
 #endif