Home
last modified time | relevance | path

Searched refs:LivingBooksConsole (Results 1 – 7 of 7) sorted by relevance

/dports/games/scummvm/scummvm-2.5.1/engines/mohawk/
H A Dconsole.cpp753 LivingBooksConsole::LivingBooksConsole(MohawkEngine_LivingBooks *vm) : GUI::Debugger(), _vm(vm) { in LivingBooksConsole() function in Mohawk::LivingBooksConsole
754 registerCmd("playSound", WRAP_METHOD(LivingBooksConsole, Cmd_PlaySound)); in LivingBooksConsole()
755 registerCmd("stopSound", WRAP_METHOD(LivingBooksConsole, Cmd_StopSound)); in LivingBooksConsole()
756 registerCmd("drawImage", WRAP_METHOD(LivingBooksConsole, Cmd_DrawImage)); in LivingBooksConsole()
757 registerCmd("changePage", WRAP_METHOD(LivingBooksConsole, Cmd_ChangePage)); in LivingBooksConsole()
761 LivingBooksConsole::~LivingBooksConsole() { in ~LivingBooksConsole()
764 bool LivingBooksConsole::Cmd_PlaySound(int argc, const char **argv) { in Cmd_PlaySound()
775 bool LivingBooksConsole::Cmd_StopSound(int argc, const char **argv) { in Cmd_StopSound()
782 bool LivingBooksConsole::Cmd_DrawImage(int argc, const char **argv) { in Cmd_DrawImage()
793 bool LivingBooksConsole::Cmd_ChangePage(int argc, const char **argv) { in Cmd_ChangePage()
[all …]
H A Dconsole.h97 class LivingBooksConsole : public GUI::Debugger {
99 explicit LivingBooksConsole(MohawkEngine_LivingBooks *vm);
100 ~LivingBooksConsole() override;
H A Dlivingbooks.cpp176 setDebugger(new LivingBooksConsole(this)); in run()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/mohawk/
H A Dconsole.cpp752 LivingBooksConsole::LivingBooksConsole(MohawkEngine_LivingBooks *vm) : GUI::Debugger(), _vm(vm) { in LivingBooksConsole() function in Mohawk::LivingBooksConsole
753 registerCmd("playSound", WRAP_METHOD(LivingBooksConsole, Cmd_PlaySound)); in LivingBooksConsole()
754 registerCmd("stopSound", WRAP_METHOD(LivingBooksConsole, Cmd_StopSound)); in LivingBooksConsole()
755 registerCmd("drawImage", WRAP_METHOD(LivingBooksConsole, Cmd_DrawImage)); in LivingBooksConsole()
756 registerCmd("changePage", WRAP_METHOD(LivingBooksConsole, Cmd_ChangePage)); in LivingBooksConsole()
759 LivingBooksConsole::~LivingBooksConsole() { in ~LivingBooksConsole()
762 bool LivingBooksConsole::Cmd_PlaySound(int argc, const char **argv) { in Cmd_PlaySound()
773 bool LivingBooksConsole::Cmd_StopSound(int argc, const char **argv) { in Cmd_StopSound()
780 bool LivingBooksConsole::Cmd_DrawImage(int argc, const char **argv) { in Cmd_DrawImage()
791 bool LivingBooksConsole::Cmd_ChangePage(int argc, const char **argv) { in Cmd_ChangePage()
H A Dconsole.h97 class LivingBooksConsole : public GUI::Debugger {
99 explicit LivingBooksConsole(MohawkEngine_LivingBooks *vm);
100 ~LivingBooksConsole() override;
H A Dlivingbooks.h764 LivingBooksConsole *_console;
H A Dlivingbooks.cpp177 _console = new LivingBooksConsole(this); in run()