SHERLOCK: Extra method comments

This commit is contained in:
Paul Gilbert 2015-05-01 17:17:24 -10:00
parent 42a99354f9
commit b4c3d9840c
14 changed files with 132 additions and 17 deletions

View file

@ -100,6 +100,9 @@ Talk::Talk(SherlockEngine *vm): _vm(vm) {
_scriptCurrentIndex = -1;
}
/**
* Sets talk sequences
*/
void Talk::setSequences(const byte *talkSequences, const byte *stillSequences, int maxPeople) {
for (int idx = 0; idx < maxPeople; ++idx) {
STILL_SEQUENCES.push_back(TalkSequences(stillSequences));
@ -1726,6 +1729,9 @@ int Talk::waitForMore(int delay) {
return key2;
}
/**
* Pops an entry off of the script stack
*/
void Talk::popStack() {
if (!_scriptStack.empty()) {
ScriptStackEntry scriptEntry = _scriptStack.pop();