2020-08-07 04:40:47 +05: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-08-26 16:41:04 +05:30
|
|
|
#ifndef BBVS_DETECTION_H
|
|
|
|
#define BBVS_DETECTION_H
|
2020-08-17 17:30:13 +05:30
|
|
|
|
2020-08-07 04:40:47 +05:30
|
|
|
namespace Bbvs {
|
|
|
|
|
2020-11-16 14:00:46 +01:00
|
|
|
enum BBVSGameFeatures {
|
2021-11-28 04:39:51 +02:00
|
|
|
GF_GUILANGSWITCH = (1 << 0), // If GUI language switch is required for menus
|
|
|
|
GF_LOOGIE_DEMO = (1 << 1),
|
|
|
|
GF_LOOGIE_ALT_DEMO = (1 << 2)
|
2020-08-07 04:40:47 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Bbvs
|
2020-08-17 17:30:13 +05:30
|
|
|
|
2020-08-26 16:41:04 +05:30
|
|
|
#endif // BBVS_DETECTION_H
|