Files
mir_server/Gateway/common/db/wing_data.h

32 lines
523 B
C
Raw Normal View History

2025-01-09 17:45:40 +08:00
#ifndef _WING_H_
#define _WING_H_
#include "common.h"
#include "skill_data.h"
#include "common/datalist.h"
#define MAX_WING_SKILL 8 //<2F><>Ӧwingsystem<65><6D>MAX_SKILL
#define MAX_WING_EQUIP 4
#pragma pack(push, 1)
struct WingSkill : public BaseSkillData
{
int64_t guid_;
};
struct WingRankData
{
int skill_grid_; //<2F><><EFBFBD>ܿո<DCBF>
int skill_cnt_; //<2F><><EFBFBD>ܸ<EFBFBD><DCB8><EFBFBD>
BaseSkillData skill_list_[MAX_WING_SKILL];
};
struct WingRankDbData
{
WingRankData data_;
StaticDataList<ItemData, MAX_WING_EQUIP> equip_;
};
#pragma pack(pop)
#endif