https://github.com/scummvm/scummvm
Raw File
Tip revision: a0996380a01ce9fc4d42c4219018047fcdb2569d authored by Eugene Sandulenko on 03 November 2011, 18:07:00 UTC
RELEASE: This is 1.4.0
Tip revision: a099638
console.h
/* 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 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

#ifndef TOON_CONSOLE_H
#define TOON_CONSOLE_H

#include "gui/debugger.h"

namespace Toon {

class ToonEngine;

class ToonConsole : public GUI::Debugger {
public:
	ToonConsole(ToonEngine *vm);
	virtual ~ToonConsole(void);

private:
	ToonEngine *_vm;
};

} // End of namespace Toon

#endif
back to top