15 lines
		
	
	
		
			496 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			496 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| /* $Id$ */
 | |
| 
 | |
| class AyStar extends AILibrary {
 | |
| 	function GetAuthor()      { return "OpenTTD NoAI Developers Team"; }
 | |
| 	function GetName()        { return "AyStar"; }
 | |
| 	function GetShortName()   { return "GRA*"; }
 | |
| 	function GetDescription() { return "An implementation of AyStar"; }
 | |
| 	function GetVersion()     { return 4; }
 | |
| 	function GetDate()        { return "2008-06-11"; }
 | |
| 	function CreateInstance() { return "AyStar"; }
 | |
| 	function GetCategory()    { return "Graph"; }
 | |
| }
 | |
| 
 | |
| RegisterLibrary(AyStar());
 | 
