Files @ r25958:603d75b53498
Branch filter:

Location: cpp/openttd-patchpack/source/regression/stationlist/info.nut

Patric Stout
Doc: update multiplayer documentation with latest changes (#9552)

Although several places were fixed during the PR making the change,
not all made it in this document.

While at it, removed all kinds of Markdown warnings by an excessive
usage of spacebar in this document.
class StationList extends AIInfo {
	function GetAuthor()      { return "OpenTTD NoAI Developers Team"; }
	function GetName()        { return "StationList"; }
	function GetShortName()   { return "REGS"; }
	function GetDescription() { return "This runs stationlist-tests on some commands. On the same map the result should always be the same."; }
	function GetVersion()     { return 1; }
	function GetAPIVersion()  { return "12"; }
	function GetDate()        { return "2007-03-18"; }
	function CreateInstance() { return "StationList"; }
	function UseAsRandomAI()  { return false; }
}

RegisterAI(StationList());