summaryrefslogtreecommitdiff
path: root/aystar.h
diff options
context:
space:
mode:
Diffstat (limited to 'aystar.h')
-rw-r--r--aystar.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/aystar.h b/aystar.h
index a72f33056..6b2594033 100644
--- a/aystar.h
+++ b/aystar.h
@@ -98,11 +98,6 @@ typedef void AyStar_GetNeighbours(AyStar *aystar, OpenListNode *current);
*/
typedef void AyStar_FoundEndNode(AyStar *aystar, OpenListNode *current);
-/*
- * Is called when aystar ends it pathfinding, but before cleanup.
- */
-typedef void AyStar_BeforeExit(AyStar *aystar);
-
// For internal use, see aystar.c
typedef void AyStar_AddStartNode(AyStar *aystar, AyStarNode* start_node, uint g);
typedef int AyStar_Main(AyStar *aystar);
@@ -122,7 +117,6 @@ struct AyStar {
AyStar_GetNeighbours* GetNeighbours;
AyStar_EndNodeCheck* EndNodeCheck;
AyStar_FoundEndNode* FoundEndNode;
- AyStar_BeforeExit* BeforeExit;
/* These are completely untouched by AyStar, they can be accesed by
* the application specific routines to input and output data.