Skip to content

MultiLanguage Resource

Pavle edited this page Aug 3, 2022 · 2 revisions
struct Entry
{
    std::string locale;
    int index;
};

struct MultiLanguageResource
{
    char localizationCategory; //Always 1 because LOCM is referencing only TELI resources
    std::vector<Entry> entries;
};
Clone this wiki locally