diff options
author | Marisa-Chan | 2013-10-18 18:44:40 +0000 |
---|---|---|
committer | Marisa-Chan | 2013-10-18 19:48:57 +0000 |
commit | 82348a74df8edd2f9e628ec939ba515c1703bc70 (patch) | |
tree | eacdeb11a52e01b1fc31e23b667bab5093e95b5d /engines/zvision/sidefx.cpp | |
parent | 2050987fa1ecc347bdc707b58d185804a875106d (diff) | |
download | scummvm-rg350-82348a74df8edd2f9e628ec939ba515c1703bc70.tar.gz scummvm-rg350-82348a74df8edd2f9e628ec939ba515c1703bc70.tar.bz2 scummvm-rg350-82348a74df8edd2f9e628ec939ba515c1703bc70.zip |
ZVISION: New base class similar to control for handling timers, music, etc...
Diffstat (limited to 'engines/zvision/sidefx.cpp')
-rw-r--r-- | engines/zvision/sidefx.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/engines/zvision/sidefx.cpp b/engines/zvision/sidefx.cpp new file mode 100644 index 0000000000..3874c86485 --- /dev/null +++ b/engines/zvision/sidefx.cpp @@ -0,0 +1,36 @@ +/* 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 "common/scummsys.h" + +#include "zvision/sidefx.h" + +#include "zvision/zvision.h" +#include "zvision/render_manager.h" +#include "zvision/utility.h" + +#include "common/stream.h" + +namespace ZVision { + + +} // End of namespace ZVision |