1
0
Fork 0
OpenTTD/bin/ai/library/pathfinder/road/library.nut

15 lines
504 B
Plaintext

/* $Id$ */
class Road extends AILibrary {
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
function GetName() { return "Road"; }
function GetShortName() { return "PFRO"; }
function GetDescription() { return "An implementation of a road pathfinder"; }
function GetVersion() { return 3; }
function GetDate() { return "2008-06-18"; }
function CreateInstance() { return "Road"; }
function GetCategory() { return "Pathfinder"; }
}
RegisterLibrary(Road());