summaryrefslogtreecommitdiff
path: root/bin/ai/library/pathfinder/rail/library.nut
blob: 8f0dbad08457f418cbd4571234eb35fef78a7afc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* $Id$ */

class Rail extends AILibrary {
	function GetAuthor()      { return "OpenTTD NoAI Developers Team"; }
	function GetName()        { return "Rail"; }
	function GetShortName()   { return "PFRL"; }
	function GetDescription() { return "An implementation of a rail pathfinder"; }
	function GetVersion()     { return 1; }
	function GetDate()        { return "2008-09-22"; }
	function CreateInstance() { return "Rail"; }
	function GetCategory()    { return "Pathfinder"; }
}

RegisterLibrary(Rail());