summaryrefslogtreecommitdiff
path: root/bin/ai/library/pathfinder/road/library.nut
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ai/library/pathfinder/road/library.nut')
-rw-r--r--bin/ai/library/pathfinder/road/library.nut14
1 files changed, 0 insertions, 14 deletions
diff --git a/bin/ai/library/pathfinder/road/library.nut b/bin/ai/library/pathfinder/road/library.nut
deleted file mode 100644
index 727cdb9b0..000000000
--- a/bin/ai/library/pathfinder/road/library.nut
+++ /dev/null
@@ -1,14 +0,0 @@
-/* $Id$ */
-
-class Road extends AILibrary {
- function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
- function GetName() { return "Road"; }
- function GetShortName() { return "PFRO"; }
- function GetDescription() { return "An implementation of a road pathfinder"; }
- function GetVersion() { return 3; }
- function GetDate() { return "2008-06-18"; }
- function CreateInstance() { return "Road"; }
- function GetCategory() { return "Pathfinder"; }
-}
-
-RegisterLibrary(Road());