mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
35 lines
769 B
Plaintext
35 lines
769 B
Plaintext
// =========================================
|
|
// EmblemSet
|
|
// =========================================
|
|
use EmblemSet;
|
|
set block XFILE_BLOCK_TEMP;
|
|
set count layers layerCount;
|
|
set count categories categoryCount;
|
|
set count iconTypes iconTypeCount;
|
|
set count bgCategories iconTypeCount;
|
|
set count icons iconTypeCount;
|
|
set count backgrounds backgroundCount;
|
|
set count backgroundLookup backgroundLookupCount;
|
|
|
|
// EmblemCategory
|
|
use EmblemCategory;
|
|
set string name;
|
|
set string description;
|
|
|
|
// EmblemIconType
|
|
use EmblemIconType;
|
|
set string name;
|
|
set string description;
|
|
|
|
// EmblemBGCategory
|
|
use EmblemBGCategory;
|
|
set string name;
|
|
set string description;
|
|
|
|
// EmblemIcon
|
|
use EmblemIcon;
|
|
set string description;
|
|
|
|
// EmblemBackground
|
|
use EmblemBackground;
|
|
set string description; |