ddnet/src/engine/shared/localization.h

13 lines
288 B
C
Raw Normal View History

2022-12-09 15:15:19 +00:00
#ifndef ENGINE_SHARED_LOCALIZATION_H
#define ENGINE_SHARED_LOCALIZATION_H
/**
* An empty function that suits as a helper to identify strings that might get localized later
*/
static constexpr const char *Localizable(const char *pStr, const char *pContext = "")
{
return pStr;
}
#endif