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

class AyStar extends AILibrary {
	function GetAuthor()      { return "OpenTTD NoAI Developers Team"; }
	function GetName()        { return "AyStar"; }
	function GetDescription() { return "An implementation of AyStar"; }
	function GetVersion()     { return 4; }
	function GetDate()        { return "2008-06-11"; }
	function CreateInstance() { return "AyStar"; }
}

RegisterLibrary(AyStar());