summaryrefslogtreecommitdiff
path: root/bin/ai/library/pathfinder/road/library.nut
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2009-01-17 16:57:30 +0000
committertruebrain <truebrain@openttd.org>2009-01-17 16:57:30 +0000
commit84f0da74af2b76c40e0ff231697f963267a8f537 (patch)
tree2e2f1540060cc86996c72dc0afa421216320530b /bin/ai/library/pathfinder/road/library.nut
parent72b0341ed01caed7053df6f2ca7f9530d1f67e40 (diff)
downloadopenttd-84f0da74af2b76c40e0ff231697f963267a8f537.tar.xz
(svn r15128) -Remove: remove WrightAI and AI Libraries from SVN, as they are now available via the content service
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());