Files
mir_server/sdk/commonLib/def/BossData.h
aixianling 5c9f1dae4a init
2025-01-09 17:45:40 +08:00

19 lines
322 B
C

#pragma once
struct CMiniDateTime;
#pragma pack (push, 4)
struct GLOBALBOSSINFO
{
int nBossId; // bossId
int nReferTime; // 刷新时间
int nDeath; //是否死亡
int nBossLv; //boss等级
GLOBALBOSSINFO() {
memset(this, 0, sizeof(*this));
}
};
#pragma pack(pop)