bin/ai/library/pathfinder/road/library.nut
branchnoai
changeset 10943 5f5a5dd407d8
child 11014 13060e4514d5
equal deleted inserted replaced
10942:cd3f2d07199f 10943:5f5a5dd407d8
       
     1 /* $Id$ */
       
     2 
       
     3 class Road extends AILibrary {
       
     4 	function GetAuthor()      { return "OpenTTD NoAI Developers Team"; }
       
     5 	function GetName()        { return "Road"; }
       
     6 	function GetDescription() { return "An implementation of a road pathfinder"; }
       
     7 	function GetVersion()     { return 1; }
       
     8 	function GetDate()        { return "2008-06-12"; }
       
     9 	function CreateInstance() { return "Road"; }
       
    10 }
       
    11 
       
    12 RegisterLibrary(Road());