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

21 lines
792 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(4)
struct ServerMailDef
{
int nServerMailId; //全服邮件id
unsigned int nActorId; //角色id
char sTitle[200]; //邮件标题
char sContent[600]; //邮件内容
int nMinVipLevel; //最低vip等级
int nMaxVipLevel; //最高vip等级
int nMinLevel; //最低人物等级
int nMaxLevel; //最高人物等级
unsigned int nMinRegisterTime; //最早注册时间
unsigned int nMaxRegisterTime; //最晚注册时间
unsigned int nMinLoginTime ; //最早登录时间
unsigned int nMaxLoginTime; //最晚登录时间
int btOnline; //在线 0全部1在线2不在线
int btSex; //性别 -1全部0男 1女
int nWay; //用途标识,0系统正常邮件1后台福利
};
#pragma pack()