blob: 727cdb9b0f8704cff57ec75d01ecb0e74dc741c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $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());
|