summaryrefslogtreecommitdiff
path: root/bin/ai/library/queue/priority_queue/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
commitee1310af719fdf9db650a8855c5726f3819ff78e (patch)
tree2e2f1540060cc86996c72dc0afa421216320530b /bin/ai/library/queue/priority_queue/library.nut
parent3a13b75e37b5642de3c1e89cf6ab3bf860b76375 (diff)
downloadopenttd-ee1310af719fdf9db650a8855c5726f3819ff78e.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/queue/priority_queue/library.nut')
-rw-r--r--bin/ai/library/queue/priority_queue/library.nut14
1 files changed, 0 insertions, 14 deletions
diff --git a/bin/ai/library/queue/priority_queue/library.nut b/bin/ai/library/queue/priority_queue/library.nut
deleted file mode 100644
index 1559393ee..000000000
--- a/bin/ai/library/queue/priority_queue/library.nut
+++ /dev/null
@@ -1,14 +0,0 @@
-/* $Id$ */
-
-class Priority_Queue extends AILibrary {
- function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
- function GetName() { return "Priority Queue"; }
- function GetShortName() { return "QUPQ"; }
- function GetDescription() { return "An implementation of a Priority Queue"; }
- function GetVersion() { return 2; }
- function GetDate() { return "2008-06-10"; }
- function CreateInstance() { return "Priority_Queue"; }
- function GetCategory() { return "Queue"; }
-}
-
-RegisterLibrary(Priority_Queue());