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

📄 goalkeeper.h

📁 曼彻斯特联队球队系统 本程序是一个以数据处理为基础的类数据库的查找软件。用户可以按程序界面上的提示查看曼彻斯特联队球员和教练的各项数值
💻 H
字号:
#ifndef goalkeeper_h
#define goalkeeper_h
class goalkeeper:public player
{
public:
	goalkeeper(const int,
			const double,
			const char*,
			const int stre,
			const int pac,
			const int jum,
			const int agi,
			const int acc,
			const int sta,
			const int bal,
			const int hei,
			const int tea,
			const int wor,
			const int det,
			const int cre,
			const int bra,
			const int pos,
			int ref,
			int han,
			int a_a,
			int thr,
			int o_o
			);
	~goalkeeper(){};
	virtual void print() const;
	const int getreflexes() const;
	const int gethanding() const;
	const int getaerial_ability() const;
	const int getthrowing() const;
	const int getone_on_ones() const;
	int reflexes;
	int handing;
	int aerial_ability;
	int throwing;
	int one_on_ones;

};

#endif

⌨️ 快捷键说明

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