SHERLOCK: Implemented checkSprite

This commit is contained in:
Paul Gilbert 2015-03-21 20:25:15 -04:00
parent 26c5168074
commit 7f04ea4425
17 changed files with 355 additions and 53 deletions

View file

@ -21,10 +21,17 @@
*/
#include "sherlock/talk.h"
#include "sherlock/sherlock.h"
namespace Sherlock {
Talk::Talk() {
Talk::Talk(SherlockEngine *vm): _vm(vm) {
_talkCounter = 0;
_talkToAbort = false;
}
void Talk::talkTo(const Common::String &name) {
// TODO
}
} // End of namespace Sherlock