bin/ai/wrightai/info.nut
branchnoai
changeset 10650 30fc5395b1b8
child 10888 8a74bb2691b0
equal deleted inserted replaced
10649:9034b80fdbdb 10650:30fc5395b1b8
       
     1 class WrightAI extends AIInfo {
       
     2 	function GetAuthor()      { return "OpenTTD Dev Team"; }
       
     3 	function GetName()        { return "WrightAI"; }
       
     4 	function GetDescription() { return "A simple AI that tries to beat you with only aircrafts"; }
       
     5 	function GetVersion()     { return 1.1; }
       
     6 	function GetDate()        { return "2008-02-24"; }
       
     7 	function CreateInstance() { return "WrightAI"; }
       
     8 }
       
     9 
       
    10 RegisterAI(WrightAI());