1
0
forked from 0ad/0ad
0ad/source/ps/i18n.h
Ykkrosh 0e55379b36 Initial i18n integration
This was SVN commit r1029.
2004-08-21 11:45:01 +00:00

12 lines
206 B
C++
Executable File

#include "i18n/Interface.h"
extern I18n::CLocale_interface* g_CurrentLocale;
#define translate(s) g_CurrentLocale->Translate(s)
namespace I18n
{
bool LoadLanguage(const char* name);
void Shutdown();
}