fheroes3/h3c_and_h3m_formats/Heroes3/object/dwellings.bt

30 lines
517 B
Text
Raw Normal View History

2014-06-21 12:50:18 +00:00
struct ObjectDwelling {
uint32 owner; // FF - nobody
};
struct ObjectShipyard {
ObjectDwelling shipyard;
};
struct ObjectGeneralRandomDwelling {
uint32 owner;
uint32 junk;
if (junk == 0 )
ushort towns;
uchar minlevel;
uchar maxlevel;
};
struct ObjectLevelRandomDwelling {
uint32 owner;
uint32 junk;
if ( junk == 0 )
ushort towns;
};
struct ObjectTownRandomDwelling {
uint32 owner;
uchar minlevel;
uchar maxlevel;
};