bin/ai/regression/regression_info.nut
branchnoai
changeset 10650 30fc5395b1b8
child 10888 8a74bb2691b0
equal deleted inserted replaced
10649:9034b80fdbdb 10650:30fc5395b1b8
       
     1 class Regression extends AIInfo {
       
     2 	function GetAuthor()      { return "OpenTTD Dev Team"; }
       
     3 	function GetName()        { return "Regression"; }
       
     4 	function GetDescription() { return "This runs regression-tests on all commands. On the same map the result should always be the same."; }
       
     5 	function GetVersion()     { return 1; }
       
     6 	function GetDate()        { return "2007-03-18"; }
       
     7 	function CreateInstance() { return "Regression"; }
       
     8 }
       
     9 
       
    10 RegisterAI(Regression());
       
    11