diff options
Diffstat (limited to 'engines/lab/lab.h')
-rw-r--r-- | engines/lab/lab.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/lab/lab.h b/engines/lab/lab.h index fa5edd6c24..b16b5981b3 100644 --- a/engines/lab/lab.h +++ b/engines/lab/lab.h @@ -41,7 +41,8 @@ struct ADGameDescription; namespace Lab { enum GameFeatures { - GF_LOWRES = 1 << 0 + GF_LOWRES = 1 << 0, + GF_WINDOWS_TRIAL = 1 << 1 }; class LabEngine : public Engine { @@ -60,6 +61,9 @@ public: Common::String generateSaveFileName(uint slot); LargeSet *_conditions, *_roomsFound; + +private: + uint32 _extraGameFeatures; }; extern LabEngine *g_lab; |