scummvm/engines/crab/console.h
Aditya 0a7ba01e8e CRAB: Add Debug Output for Keymaps
Now keymap being used can known by typing "what keymap" in the debugger
console.
2023-11-13 18:08:46 +05:30

41 lines
1.2 KiB
C++

/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef CRAB_CONSOLE_H
#define CRAB_CONSOLE_H
#include "gui/debugger.h"
namespace Crab {
class Console : public GUI::Debugger {
private:
bool cmdDraw(int argc, const char **argv);
bool cmdWhat(int argc, const char **argv);
public:
Console();
~Console() override;
};
} // End of namespace Crab
#endif // CRAB_CONSOLE_H