kolibrios/programs/games/heliothryx/game/strings.h
alpine cd3b533c6b Heliothryx game update
- added pause menu (Esc)
- lowest frame rate limit decreased downto 5 fps



git-svn-id: svn://kolibrios.org@5310 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-12-31 00:32:03 +00:00

30 lines
429 B
C

#ifndef RS_STRINGS_H
#define RS_STRINGS_H
#ifndef RS_KOS
#include "strings_ru.h"
#else
//#include "../lang.h"
#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