diff options
author | yinsimei | 2017-05-27 20:05:33 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2017-07-13 18:27:45 +0200 |
commit | 1aa64b5b0f1b6908e76e796cb7e683a5587d5c4d (patch) | |
tree | 973511b21644bb73361c80672feffb9ee6ce796d /engines/sludge/CommonCode | |
parent | f2d81f6f5dd52f838518ee24080f1ebc9451c7f8 (diff) | |
download | scummvm-rg350-1aa64b5b0f1b6908e76e796cb7e683a5587d5c4d.tar.gz scummvm-rg350-1aa64b5b0f1b6908e76e796cb7e683a5587d5c4d.tar.bz2 scummvm-rg350-1aa64b5b0f1b6908e76e796cb7e683a5587d5c4d.zip |
SLUDGE: Add namespace for file version.h
Diffstat (limited to 'engines/sludge/CommonCode')
-rw-r--r-- | engines/sludge/CommonCode/version.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sludge/CommonCode/version.h b/engines/sludge/CommonCode/version.h index 2b640a0656..9307bff210 100644 --- a/engines/sludge/CommonCode/version.h +++ b/engines/sludge/CommonCode/version.h @@ -10,4 +10,8 @@ #define VERSION(a,b) (a * 256 + b) +namespace Sludge { + extern int gameVersion; + +} // End of namespace Sludge |