mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 00:25:44 +00:00
ZoneCommon: Fix EmblemSet asset struct
This commit is contained in:
parent
4f78570023
commit
9b9256d2cb
@ -1878,21 +1878,21 @@ struct EmblemBackground
|
|||||||
|
|
||||||
struct EmblemSet
|
struct EmblemSet
|
||||||
{
|
{
|
||||||
int colorCount;
|
int colorCount;
|
||||||
int layerCount;
|
int layerCount;
|
||||||
EmblemLayer layers[32];
|
EmblemLayer* layers;
|
||||||
int categoryCount;
|
int categoryCount;
|
||||||
EmblemCategory categories[16];
|
EmblemCategory* categories;
|
||||||
int iconTypeCount;
|
int iconTypeCount;
|
||||||
EmblemIconType iconTypes[16];
|
EmblemIconType* iconTypes;
|
||||||
int bgCategoryCount;
|
int bgCategoryCount;
|
||||||
EmblemBGCategory bgCategories[16];
|
EmblemBGCategory* bgCategories;
|
||||||
int iconCount;
|
int iconCount;
|
||||||
EmblemIcon icons[1024];
|
EmblemIcon* icons;
|
||||||
int backgroundCount;
|
int backgroundCount;
|
||||||
EmblemBackground backgrounds[550];
|
EmblemBackground* backgrounds;
|
||||||
int backgroundLookupCount;
|
int backgroundLookupCount;
|
||||||
__int16 backgroundLookup[550];
|
__int16* backgroundLookup;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ScriptParseTree
|
struct ScriptParseTree
|
||||||
|
Loading…
x
Reference in New Issue
Block a user