kolibrios-gitea/programs/games/marblematch3/game/strings.h
alpine 2815962839 Update for Heliothryx game:
- added localization tool

Updates for Marble Match-3 game:
- added localization support
- some cosmetic changes



git-svn-id: svn://kolibrios.org@5243 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-12-19 17:29:02 +00:00

28 lines
404 B
C

#ifndef RS_STRINGS_H
#define RS_STRINGS_H
#ifndef RS_KOS
#include "strings_en.h"
#else
#ifdef LANG_RU
// Russian
#include "strings_ru.h"
#elif LANG_SP
// other languages are not implemented
#include "strings_en.h"
#elif LANG_IT
// other languages are not implemented
#include "strings_en.h"
#else
// default language: English
#include "strings_en.h"
#endif
#endif
#endif