fheroes3/h3c_and_h3m_formats/Heroes3/object/artefact.bt

18 lines
328 B
Text
Raw Normal View History

2014-06-21 12:50:18 +00:00
struct ObjectArtefact {
uchar isText;
if ( isText == 1 ) {
hstring text;
uchar isGuards;
if ( isGuards == 1 ) {
struct GuardTag {
ushort GuardID;
ushort GuardCount;
} Guards[7];
}
uchar junk[4];
}
};