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

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

RegisterLibrary(Rail());