aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/behavior.h
diff options
context:
space:
mode:
authorEugene Sandulenko2013-08-14 12:52:59 +0300
committerEugene Sandulenko2013-09-06 14:51:14 +0300
commitfce8c0f5952533b592de21205274f5cf9347a3b1 (patch)
tree481ea307373fcfd2c07954a1e54be5f54a9400e9 /engines/fullpipe/behavior.h
parent682eb87af6788cf576691ecc938da9dbc48802cf (diff)
downloadscummvm-rg350-fce8c0f5952533b592de21205274f5cf9347a3b1.tar.gz
scummvm-rg350-fce8c0f5952533b592de21205274f5cf9347a3b1.tar.bz2
scummvm-rg350-fce8c0f5952533b592de21205274f5cf9347a3b1.zip
FULLPIPE: Implement BehaviorEntry
Diffstat (limited to 'engines/fullpipe/behavior.h')
-rw-r--r--engines/fullpipe/behavior.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/fullpipe/behavior.h b/engines/fullpipe/behavior.h
index ecb7d3a428..210426ebc6 100644
--- a/engines/fullpipe/behavior.h
+++ b/engines/fullpipe/behavior.h
@@ -30,6 +30,8 @@ struct BehaviorEntryInfo {
int _delay;
uint _percent;
int _flags;
+
+ BehaviorEntryInfo(CGameVar *subvar, Scene *sc);
};
struct BehaviorEntry {
@@ -38,7 +40,7 @@ struct BehaviorEntry {
int _flags;
BehaviorEntryInfo **_items;
- BehaviorEntry(CGameVar *var, Scene *sc, StaticANIObject *ani, int *maxDelay);
+ BehaviorEntry(CGameVar *var, Scene *sc, StaticANIObject *ani, int *minDelay);
};
struct BehaviorInfo {