diff options
| author | Robert Göffringmann | 2003-12-16 02:10:15 +0000 |
|---|---|---|
| committer | Robert Göffringmann | 2003-12-16 02:10:15 +0000 |
| commit | 189e08bc7985fc5664e7ab95195bbade07488f48 (patch) | |
| tree | f12049da0a8e600bcdd425e4c314c50b5c9922f7 /sword1/debug.h | |
| parent | c3a9b2df6789055325b7fea6dd591cea1d419682 (diff) | |
| download | scummvm-rg350-189e08bc7985fc5664e7ab95195bbade07488f48.tar.gz scummvm-rg350-189e08bc7985fc5664e7ab95195bbade07488f48.tar.bz2 scummvm-rg350-189e08bc7985fc5664e7ab95195bbade07488f48.zip | |
Broken Sword 1: initial import
svn-id: r11664
Diffstat (limited to 'sword1/debug.h')
| -rw-r--r-- | sword1/debug.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sword1/debug.h b/sword1/debug.h new file mode 100644 index 0000000000..ee902d83b3 --- /dev/null +++ b/sword1/debug.h @@ -0,0 +1,37 @@ +/* ScummVM - Scumm Interpreter + * Copyright (C) 2003 The ScummVM project + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Header$ + * + */ + +#ifndef BSDEBUG_H +#define BSDEBUG_H + +#include "scummsys.h" + +class SwordDebug { +public: + static void interpretScript(uint32 id, uint32 level, uint32 script, uint32 pc); + static void callMCode(uint32 mcodeNum, uint32 paramCount, int32 a, int32 b, int32 c, int32 d, int32 e, int32 f); + +private: + static const char _mCodeNames[100][35]; +}; + +#endif // BSDEBUG_H + |
