diff options
author | Eugene Sandulenko | 2018-05-26 20:32:53 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-11-13 22:07:08 +0100 |
commit | 541b2e473a28eee8b591065529a4b37616317d0c (patch) | |
tree | 0f188719e2fe57ca3d8a4ba45346e07a72ff4edf /engines/griffon/griffon.h | |
parent | 08a475c318b568b189032271a2db6de9645911c4 (diff) | |
download | scummvm-rg350-541b2e473a28eee8b591065529a4b37616317d0c.tar.gz scummvm-rg350-541b2e473a28eee8b591065529a4b37616317d0c.tar.bz2 scummvm-rg350-541b2e473a28eee8b591065529a4b37616317d0c.zip |
GRIFFON: Added skeleton engine with detection
Diffstat (limited to 'engines/griffon/griffon.h')
-rw-r--r-- | engines/griffon/griffon.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/engines/griffon/griffon.h b/engines/griffon/griffon.h new file mode 100644 index 0000000000..dc250fdffb --- /dev/null +++ b/engines/griffon/griffon.h @@ -0,0 +1,45 @@ +/* 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 GRIFFON_H +#define GRIFFON_H + +#include "common/scummsys.h" +#include "common/random.h" +#include "engines/engine.h" + +namespace Griffon { + +class GriffonEngine : public Engine { +public: + GriffonEngine(OSystem *syst); + ~GriffonEngine(); + + virtual Common::Error run(); + +private: + Common::RandomSource *_rnd; +}; + +} + +#endif |