diff options
author | johndoe123 | 2015-11-18 13:03:45 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2018-07-20 06:43:33 +0000 |
commit | a30a31868b44d3218e59c6eca42bf1d924b996e8 (patch) | |
tree | b258104ca4918bcc6d7c5b28e6ea99583bd38de6 /engines/illusions/duckman/duckman_screenshakereffects.h | |
parent | 88ea89118473e149de077f2c620dc5424e1ed1a2 (diff) | |
download | scummvm-rg350-a30a31868b44d3218e59c6eca42bf1d924b996e8.tar.gz scummvm-rg350-a30a31868b44d3218e59c6eca42bf1d924b996e8.tar.bz2 scummvm-rg350-a30a31868b44d3218e59c6eca42bf1d924b996e8.zip |
ILLUSIONS: Move screen shaker effects into separate file
Diffstat (limited to 'engines/illusions/duckman/duckman_screenshakereffects.h')
-rw-r--r-- | engines/illusions/duckman/duckman_screenshakereffects.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/engines/illusions/duckman/duckman_screenshakereffects.h b/engines/illusions/duckman/duckman_screenshakereffects.h new file mode 100644 index 0000000000..c868ce4fbe --- /dev/null +++ b/engines/illusions/duckman/duckman_screenshakereffects.h @@ -0,0 +1,34 @@ +/* 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 ILLUSIONS_DUCKMAN_SCREENSHAKEEFFECTS_H +#define ILLUSIONS_DUCKMAN_SCREENSHAKEEFFECTS_H + +#include "illusions/illusions.h" + +namespace Illusions { + +const ScreenShakeEffect *getScreenShakeEffect(byte index); + +} // End of namespace Illusions + +#endif // ILLUSIONS_DUCKMAN_SCREENSHAKEEFFECTS_H |