2009-01-13 16:30:24 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-01-12 17:11:45 +00:00
|
|
|
class Regression extends AIInfo {
|
|
|
|
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
|
|
|
|
function GetName() { return "Regression"; }
|
2009-01-15 14:37:44 +00:00
|
|
|
function GetShortName() { return "REGR"; }
|
2009-01-12 17:11:45 +00:00
|
|
|
function GetDescription() { return "This runs regression-tests on all commands. On the same map the result should always be the same."; }
|
|
|
|
function GetVersion() { return 1; }
|
2010-02-16 00:07:15 +00:00
|
|
|
function GetAPIVersion() { return "1.1"; }
|
2009-01-12 17:11:45 +00:00
|
|
|
function GetDate() { return "2007-03-18"; }
|
|
|
|
function CreateInstance() { return "Regression"; }
|
|
|
|
}
|
|
|
|
|
|
|
|
RegisterAI(Regression());
|
|
|
|
|