diff options
author | Eugene Sandulenko | 2013-09-06 15:37:57 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-09-06 15:37:57 +0300 |
commit | e672452462efed37c244b38210a958858ca156cd (patch) | |
tree | d0aff41923309f9030e8961ef2ee48e9e424611e | |
parent | 1ed2069f86ce94e91232962fa6958d0bc5ba70c9 (diff) | |
download | scummvm-rg350-e672452462efed37c244b38210a958858ca156cd.tar.gz scummvm-rg350-e672452462efed37c244b38210a958858ca156cd.tar.bz2 scummvm-rg350-e672452462efed37c244b38210a958858ca156cd.zip |
FULLPIPE: Added guard #define
-rw-r--r-- | engines/fullpipe/objectnames.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/engines/fullpipe/objectnames.h b/engines/fullpipe/objectnames.h index 3eaaf7046f..015df727e9 100644 --- a/engines/fullpipe/objectnames.h +++ b/engines/fullpipe/objectnames.h @@ -22,6 +22,11 @@ // This file is used in order to avoid usage of constants in Russian accross the code +#ifndef FULLPIPE_OBJECTNAMES_H +#define FULLPIPE_OBJECTNAMES_H + +namespace Fullpipe { + #define sO_Grandma "\xc1\xe0\xe1\xf3\xeb\xff" // "Бабуля" #define sO_Jar_4 "\xc1\xe0\xed\xea\xe0_4" // "Банка_4" #define sO_Pool "\xc1\xe0\xf1\xf1\xe5\xe9\xed" // "Бассейн" @@ -239,3 +244,7 @@ #define sO_Egg1 "\xdf\xe9\xf6\xee\x31" // "Яйцо1" #define sO_Egg2 "\xdf\xe9\xf6\xee\x32" // "Яйцо2" #define sO_Egg3 "\xdf\xe9\xf6\xee\x33" // "Яйцо3" + +} // End of namespace Fullpipe + +#endif /* FULLPIPE_OBJECTNAMES_H */ |