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

📄 ch11cplayer.h

📁 此例子是学习C++的好东西
💻 H
字号:
//Program 11-12   Deal the Cards and Inheritance

//File: Ch11CPlayer.H


#ifndef _CH11CPLAYER_H
#define _CH11CPLAYER_H

#include "Ch11Card.h"


class CPlayer 
{
protected:
	Card Hand[4];    // the players have a hand of cards
	int cards_in_hand;
	
public:
	CPlayer();
	void GetCard( Card X );
	void ShowHand();
	
};

#endif

⌨️ 快捷键说明

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