bin/ai/library/pathfinder/road/library.nut
branchnoai
changeset 10943 5f5a5dd407d8
child 11014 13060e4514d5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/ai/library/pathfinder/road/library.nut	Thu Jun 12 21:07:25 2008 +0000
@@ -0,0 +1,12 @@
+/* $Id$ */
+
+class Road extends AILibrary {
+	function GetAuthor()      { return "OpenTTD NoAI Developers Team"; }
+	function GetName()        { return "Road"; }
+	function GetDescription() { return "An implementation of a road pathfinder"; }
+	function GetVersion()     { return 1; }
+	function GetDate()        { return "2008-06-12"; }
+	function CreateInstance() { return "Road"; }
+}
+
+RegisterLibrary(Road());