summaryrefslogtreecommitdiff
path: root/bin/ai/wrightai/info.nut
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2009-01-17 16:57:30 +0000
committertruebrain <truebrain@openttd.org>2009-01-17 16:57:30 +0000
commit84f0da74af2b76c40e0ff231697f963267a8f537 (patch)
tree2e2f1540060cc86996c72dc0afa421216320530b /bin/ai/wrightai/info.nut
parent72b0341ed01caed7053df6f2ca7f9530d1f67e40 (diff)
downloadopenttd-84f0da74af2b76c40e0ff231697f963267a8f537.tar.xz
(svn r15128) -Remove: remove WrightAI and AI Libraries from SVN, as they are now available via the content service
Diffstat (limited to 'bin/ai/wrightai/info.nut')
-rw-r--r--bin/ai/wrightai/info.nut16
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/ai/wrightai/info.nut b/bin/ai/wrightai/info.nut
deleted file mode 100644
index 7a3feb8c5..000000000
--- a/bin/ai/wrightai/info.nut
+++ /dev/null
@@ -1,16 +0,0 @@
-/* $Id$ */
-
-class WrightAI extends AIInfo {
- function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
- function GetName() { return "WrightAI"; }
- function GetShortName() { return "WRAI"; }
- function GetDescription() { return "A simple AI that tries to beat you with only aircrafts"; }
- function GetVersion() { return 2; }
- function GetDate() { return "2008-02-24"; }
- function CreateInstance() { return "WrightAI"; }
- function GetSettings() {
- AddSetting({name = "min_town_size", description = "The minimal size of towns to work on", min_value = 100, max_value = 1000, easy_value = 500, medium_value = 400, hard_value = 300, custom_value = 500, flags = 0});
- }
-}
-
-RegisterAI(WrightAI());