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

12 lines
341 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
//禁止编译器对此结构进行字节对齐
#pragma pack (push, 1)
//保存这个玩家的副本的记录数据
typedef struct tagFubenData
{
WORD wFubenId; //副本的id对应配置表
WORD wDaycount; //本副本今日进入的次数
BYTE bProgress; //当前的进度值
}FubenData;
#pragma pack(pop)