aboutsummaryrefslogtreecommitdiff
path: root/common/engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/engine.h')
-rw-r--r--common/engine.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/common/engine.h b/common/engine.h
index f9d7fb9902..5015f670e8 100644
--- a/common/engine.h
+++ b/common/engine.h
@@ -38,7 +38,11 @@ enum GameId {
// Beneath a Steel Sky
GID_SKY_FIRST,
- GID_SKY_LAST = GID_SKY_FIRST + 49
+ GID_SKY_LAST = GID_SKY_FIRST + 49,
+
+ // Broken Sword 2
+ GID_BS2_FIRST,
+ GID_BS2_LAST = GID_BS2_FIRST + 49
};
@@ -112,5 +116,10 @@ extern const VersionSettings *Engine_SKY_targetList();
extern Engine *Engine_SKY_create(GameDetector *detector, OSystem *syst);
#endif
+#ifndef DISABLE_BS2
+extern const VersionSettings *Engine_BS2_targetList();
+extern Engine *Engine_BS2_create(GameDetector *detector, OSystem *syst);
+#endif
+
#endif