mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-12 18:40:29 +00:00
13 lines
406 B
Plaintext
13 lines
406 B
Plaintext
|
/* $Id$ */
|
||
|
|
||
|
class Road extends AILibrary {
|
||
|
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
|
||
|
function GetName() { return "Road"; }
|
||
|
function GetDescription() { return "An implementation of a road pathfinder"; }
|
||
|
function GetVersion() { return 3; }
|
||
|
function GetDate() { return "2008-06-18"; }
|
||
|
function CreateInstance() { return "Road"; }
|
||
|
}
|
||
|
|
||
|
RegisterLibrary(Road());
|