diff options
Diffstat (limited to 'bin/ai/regression/regression_info.nut')
-rw-r--r-- | bin/ai/regression/regression_info.nut | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/ai/regression/regression_info.nut b/bin/ai/regression/regression_info.nut new file mode 100644 index 000000000..9ddd3daa2 --- /dev/null +++ b/bin/ai/regression/regression_info.nut @@ -0,0 +1,11 @@ +class Regression extends AIInfo { + function GetAuthor() { return "OpenTTD NoAI Developers Team"; } + function GetName() { return "Regression"; } + 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; } + function GetDate() { return "2007-03-18"; } + function CreateInstance() { return "Regression"; } +} + +RegisterAI(Regression()); + |