diff options
author | Paul Gilbert | 2018-10-15 21:47:27 -0700 |
---|---|---|
committer | Paul Gilbert | 2018-12-08 19:05:59 -0800 |
commit | 9c536cb6bff1744b39b20a9d29c9e33315025e2d (patch) | |
tree | dc34dc1398f7576425d9a13faa6861570f9e724c /engines/gargoyle/scott/scott.cpp | |
parent | c4d4d48d67953687b1d21eb1f7e01fb4a508958b (diff) | |
download | scummvm-rg350-9c536cb6bff1744b39b20a9d29c9e33315025e2d.tar.gz scummvm-rg350-9c536cb6bff1744b39b20a9d29c9e33315025e2d.tar.bz2 scummvm-rg350-9c536cb6bff1744b39b20a9d29c9e33315025e2d.zip |
GLK: Add stub classes for sub-engine components
Diffstat (limited to 'engines/gargoyle/scott/scott.cpp')
-rw-r--r-- | engines/gargoyle/scott/scott.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/engines/gargoyle/scott/scott.cpp b/engines/gargoyle/scott/scott.cpp new file mode 100644 index 0000000000..b5e537caad --- /dev/null +++ b/engines/gargoyle/scott/scott.cpp @@ -0,0 +1,30 @@ +/* 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. + * + */ + +#include "gargoyle/scott/scott.h" + +namespace Gargoyle { +namespace Scott { + + +} // End of namespace Scott +} // End of namespace Gargoyle |