XPlor/libs/assets/localizeentry.h

19 lines
251 B
C
Raw Normal View History

2025-06-07 11:20:47 -04:00
#ifndef LOCALIZEENTRY_H
#define LOCALIZEENTRY_H
#include <QString>
struct p_LocalizeEntry
{
const char *value;
const char *name;
};
struct LocalizeEntry : p_LocalizeEntry
{
QString value;
QString name;
};
#endif // LOCALIZEENTRY_H