MOHAWK: RIVEN: Move shared graphics/detection enum to new header.

This commit is contained in:
aryanrawlani28 2020-08-07 23:50:24 +05:30 committed by Eugene Sandulenko
parent 81ba5d5627
commit 8c324fab42
2 changed files with 34 additions and 7 deletions

View File

@ -24,6 +24,7 @@
#define MOHAWK_RIVEN_GRAPHICS_H
#include "mohawk/graphics.h"
#include "mohawk/riven_metaengine/graphics_detection_enums.h"
#include "common/ustr.h"
@ -51,13 +52,6 @@ enum RivenTransition {
kRivenTransitionBlend2 = 17
};
enum RivenTransitionMode {
kRivenTransitionModeDisabled = 5000,
kRivenTransitionModeFastest = 5001,
kRivenTransitionModeNormal = 5002,
kRivenTransitionModeBest = 5003
};
enum RivenCreditsImageNumber {
kRivenCreditsZeroImage = 302,
kRivenCreditsFirstImage = 303,

View File

@ -0,0 +1,33 @@
/* 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 MOHAWK_RIVEN_GRAPHICS_DETECTION_ENUMS_H
#define MOHAWK_RIVEN_GRAPHICS_DETECTION_ENUMS_H
enum RivenTransitionMode {
kRivenTransitionModeDisabled = 5000,
kRivenTransitionModeFastest = 5001,
kRivenTransitionModeNormal = 5002,
kRivenTransitionModeBest = 5003
};
#endif