src/ai/api/ai_settings.hpp
branchnoai
changeset 11097 6967c52c78c5
parent 11096 4c9f93632d0b
child 11098 37d15a8951b8
--- a/src/ai/api/ai_settings.hpp	Mon Jun 30 10:46:20 2008 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,30 +0,0 @@
-/* $Id$ */
-
-/** @file ai_settings.hpp Everything to change AI settings. */
-
-#ifndef AI_SETTINGS_HPP
-#define AI_SETTINGS_HPP
-
-#include "ai_object.hpp"
-
-/**
- * Class that handles all AI settings related functions.
- */
-class AISettings : public AIObject {
-public:
-	static const char *GetClassName() { return "AISettings"; }
-
-	/**
-	 * Change the minimum amount of time the AI should be put in suspend mode
-	 *   when you execute a command. Normally in SP this is 1, and in MP it is
-	 *   what ever delay the server has been programmed to delay commands
-	 *   (normally between 1 and 5). To give a more 'real' effect to your AI,
-	 *   you can control that number here.
-	 * @param ticks The minimum amount of ticks to wait.
-	 * @pre Ticks should be positive. Too big values will influence performance of the AI.
-	 * @note If the number is lower then the MP setting, the MP setting wins.
-	 */
-	static void SetCommandDelay(uint ticks);
-};
-
-#endif /* AI_SETTINGS_HPP */