aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/livingbooks_code.h
diff options
context:
space:
mode:
authorAlyssa Milburn2011-11-27 00:11:34 +0100
committerAlyssa Milburn2011-11-27 00:11:34 +0100
commite4bdea7c17a4d2122a89236010fbc77cb298dfa5 (patch)
tree1acd0f546827f47a03b7bc633e26f5aa543f4e66 /engines/mohawk/livingbooks_code.h
parent9f56876165d10dbfc86d8f232345ea0a766966bf (diff)
downloadscummvm-rg350-e4bdea7c17a4d2122a89236010fbc77cb298dfa5.tar.gz
scummvm-rg350-e4bdea7c17a4d2122a89236010fbc77cb298dfa5.tar.bz2
scummvm-rg350-e4bdea7c17a4d2122a89236010fbc77cb298dfa5.zip
MOHAWK: Stub LB's min/max/abs.
Diffstat (limited to 'engines/mohawk/livingbooks_code.h')
-rw-r--r--engines/mohawk/livingbooks_code.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/mohawk/livingbooks_code.h b/engines/mohawk/livingbooks_code.h
index ce5910559c..6d3812aae9 100644
--- a/engines/mohawk/livingbooks_code.h
+++ b/engines/mohawk/livingbooks_code.h
@@ -250,6 +250,9 @@ public:
void cmdRandom(const Common::Array<LBValue> &params);
void cmdStringLen(const Common::Array<LBValue> &params);
void cmdSubstring(const Common::Array<LBValue> &params);
+ void cmdMax(const Common::Array<LBValue> &params);
+ void cmdMin(const Common::Array<LBValue> &params);
+ void cmdAbs(const Common::Array<LBValue> &params);
void cmdGetRect(const Common::Array<LBValue> &params);
void cmdMakePoint(const Common::Array<LBValue> &params);
void cmdTopLeft(const Common::Array<LBValue> &params);