⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 px_ls_item_staff_guid.h

📁 MMORPG游戏服务器端架构及函数
💻 H
字号:
#pragma	  once

/* must been first include begin */
#include "..\ProjectX_Common\ProjectX_Copyright.h"
#include "..\ProjectX_Common\ProjectX_Common.h"
/* must been first include end */

/* std and common include */
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>

//创建战盟或者血盟时必须具备的道具

typedef struct tagItem_Guid_Base {
	int		index;								/* 序号 */
	char	name[MAX_ITEM_GUID_NAME_LEN];		/* 名称 */
	WORD	level_req;							/* 需求等级 */
	byte	gender_req;							/* 性别专属 */
	BOOL	hunman_use;							/* 人类能否使用 */
	BOOL	hun_use;							/* 野蛮人 */
	BOOL	sorcer_use;							/* 法师 */
	BOOL	genius_use;							/* 精灵 */
	BOOL	bowman_use;							/* 弓弩手 */
	BOOL	taoist_use;							/* 道士 */
	BOOL	nodead_use;							/* 亡灵 */
	BOOL	craftsman_use;						/* 匠人 */
	BOOL	knight_use;							/* 骑士 */
	byte	size_x;								/* 道具占用的空间大小X */
	byte	size_y;								/* 道具占用的空间大小Y */
	float	weight;								/* 重量 */
	int		money_sell;							/* 出售金钱 */
}ITEM_GUID_BASE, * LPITEM_GUID_BASE;


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -