diff options
author | truebrain <truebrain@openttd.org> | 2011-12-21 15:06:00 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2011-12-21 15:06:00 +0000 |
commit | ac306fc13883e727513824b4796c42c2baabd480 (patch) | |
tree | e69352da448f2d971f835f19b3cd79894fe8fa08 /src/script/api/ai | |
parent | 5988659eea20d3e84fdeadf448133e9b94e9630f (diff) | |
download | openttd-ac306fc13883e727513824b4796c42c2baabd480.tar.xz |
(svn r23652) -Fix: don't include/document ScriptText for AIs. It is not usable
Diffstat (limited to 'src/script/api/ai')
-rw-r--r-- | src/script/api/ai/ai_text.hpp.sq | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/script/api/ai/ai_text.hpp.sq b/src/script/api/ai/ai_text.hpp.sq deleted file mode 100644 index 39f3ac792..000000000 --- a/src/script/api/ai/ai_text.hpp.sq +++ /dev/null @@ -1,31 +0,0 @@ -/* $Id$ */ - -/* - * This file is part of OpenTTD. - * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2. - * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>. - */ - -/* THIS FILE IS AUTO-GENERATED; PLEASE DO NOT ALTER MANUALLY */ - -#include "../script_text.hpp" -#include "../template/template_text.hpp.sq" - - -template <> const char *GetClassName<ScriptText, ST_AI>() { return "AIText"; } - -void SQAIText_Register(Squirrel *engine) -{ - DefSQClass<ScriptText, ST_AI> SQAIText("AIText"); - SQAIText.PreRegister(engine); - SQAIText.AddSQAdvancedConstructor(engine); - - SQAIText.DefSQConst(engine, ScriptText::SCRIPT_TEXT_MAX_PARAMETERS, "SCRIPT_TEXT_MAX_PARAMETERS"); - - SQAIText.DefSQAdvancedMethod(engine, &ScriptText::_set, "_set"); - SQAIText.DefSQAdvancedMethod(engine, &ScriptText::SetParam, "SetParam"); - SQAIText.DefSQAdvancedMethod(engine, &ScriptText::AddParam, "AddParam"); - - SQAIText.PostRegister(engine); -} |