aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/script.h
diff options
context:
space:
mode:
authorDenis Kasak2009-07-13 19:53:53 +0000
committerDenis Kasak2009-07-13 19:53:53 +0000
commit04e4bfdbbed01d71f3d5c74d4e3a2090430a1b35 (patch)
treed1bb18cdd79b0cd58a335b0dffac2a093ba1fecf /engines/draci/script.h
parentf8c20b9e9c68dc670ddb0179abed6dc12509c244 (diff)
downloadscummvm-rg350-04e4bfdbbed01d71f3d5c74d4e3a2090430a1b35.tar.gz
scummvm-rg350-04e4bfdbbed01d71f3d5c74d4e3a2090430a1b35.tar.bz2
scummvm-rg350-04e4bfdbbed01d71f3d5c74d4e3a2090430a1b35.zip
* Implemented the following GPL functions: IsIcoOn, IcoStat, IsObjOn, IsObjOff, IsObjAway
* Changed GameObject::_location to an int since we sometimes use location -1. * Some more uint <-> int changes to prevent comparisons between signed and unsigned. svn-id: r42452
Diffstat (limited to 'engines/draci/script.h')
-rw-r--r--engines/draci/script.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/draci/script.h b/engines/draci/script.h
index 7007e563c4..d8e9a2f49f 100644
--- a/engines/draci/script.h
+++ b/engines/draci/script.h
@@ -122,6 +122,12 @@ private:
int funcRandom(int n);
int funcNot(int n);
+ int funcIsIcoOn(int iconID);
+ int funcIcoStat(int iconID);
+ int funcIsObjOn(int objID);
+ int funcIsObjOff(int objID);
+ int funcIsObjAway(int objID);
+
void setupCommandList();
const GPL2Command *findCommand(byte num, byte subnum);