1#ifndef ENGINE_SHARED_LOCALIZATION_H
2#define ENGINE_SHARED_LOCALIZATION_H
3
4/**
5* An empty function that suits as a helper to identify strings that might get localized later
6*/
7static constexpr const char *Localizable(const char *pStr, const char *pContext = "")
8{
9 return pStr;
10}
11
12#endif
13