summaryrefslogtreecommitdiffstats
path: root/src/script/script.h
diff options
context:
space:
mode:
authorerihel <erihel@gmail.com>2013-03-30 16:04:58 +0100
committererihel <erihel@gmail.com>2013-03-30 16:04:58 +0100
commit5a60a7a21958e2d8cfd33148f575d36e3bbd9ebb (patch)
treedee4ac380eb5d14d2a123b7b7b63b9cfa83ce9fb /src/script/script.h
parentb7b5f002a636154033166a2c828765386c14e5a5 (diff)
parent845c8e9437e26cf3193d4e3dae2a02f03e17747d (diff)
downloadcolobot-5a60a7a21958e2d8cfd33148f575d36e3bbd9ebb.tar.gz
colobot-5a60a7a21958e2d8cfd33148f575d36e3bbd9ebb.tar.bz2
colobot-5a60a7a21958e2d8cfd33148f575d36e3bbd9ebb.zip
Merge branch 'dev' of github:colobot/colobot into dev
Diffstat (limited to 'src/script/script.h')
-rw-r--r--src/script/script.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/script/script.h b/src/script/script.h
index 982d12b..0d2726a 100644
--- a/src/script/script.h
+++ b/src/script/script.h
@@ -100,6 +100,7 @@ private:
static CBotTypResult cTwoFloat(CBotVar* &var, void* user);
static CBotTypResult cString(CBotVar* &var, void* user);
static CBotTypResult cGetObject(CBotVar* &var, void* user);
+ static CBotTypResult cDestroy(CBotVar* &var, void* user);
static CBotTypResult cSearch(CBotVar* &var, void* user);
static CBotTypResult cRadar(CBotVar* &var, void* user);
static CBotTypResult cDetect(CBotVar* &var, void* user);
@@ -133,6 +134,7 @@ private:
static bool rRand(CBotVar* var, CBotVar* result, int& exception, void* user);
static bool rAbs(CBotVar* var, CBotVar* result, int& exception, void* user);
static bool rGetObject(CBotVar* var, CBotVar* result, int& exception, void* user);
+ static bool rDestroy(CBotVar* var, CBotVar* result, int& exception, void* user);
static bool rSearch(CBotVar* var, CBotVar* result, int& exception, void* user);
static bool rRadar(CBotVar* var, CBotVar* result, int& exception, void* user);
static bool rDetect(CBotVar* var, CBotVar* result, int& exception, void* user);