GROOVIE: Solve missing header dependencies.

This commit is contained in:
aryanrawlani28 2020-08-07 19:40:03 +05:30 committed by Eugene Sandulenko
parent 563cef1071
commit 509fd69827
5 changed files with 8 additions and 1 deletions

View File

@ -24,6 +24,7 @@
#include "common/translation.h"
#include "engines/advancedDetector.h"
#include "groovie/detection_enums.h"
#include "groovie/detection.h"
namespace Groovie {

View File

@ -24,7 +24,6 @@
#define GROOVIE_DETECTION_H
#include "engines/advancedDetector.h"
#include "groovie/detection_enums.h" // for EngineVersion
namespace Groovie {

View File

@ -20,6 +20,9 @@
*
*/
#ifndef GROOVIE_DETECTION_ENUMS_H
#define GROOVIE_DETECTION_ENUMS_H
namespace Groovie {
enum EngineVersion {
@ -28,3 +31,5 @@ enum EngineVersion {
};
} // End of namespace Groovie
#endif // !GROOVIE_DETECTION_ENUMS_H

View File

@ -24,6 +24,7 @@
#include "groovie/cursor.h"
#include "groovie/detection.h"
#include "groovie/graphics.h"
#include "groovie/script.h"
#include "groovie/music.h"
#include "groovie/resource.h"
#include "groovie/stuffit.h"

View File

@ -28,6 +28,7 @@
#include "engines/engine.h"
#include "graphics/pixelformat.h"
#include "groovie/detection_enums.h"
namespace Common {
class MacResManager;