player.h

来自「手机钩鱼扑克牌游戏 蓝牙对战 手机游戏:扑克钩鱼 说明文档 硬件环境:」· C头文件 代码 · 共 21 行

H
21
字号
#ifndef PLAYER_H
#define PLAYER_H

#include <e32std.h>

class Player
{
public:
	Player(void);
	~Player(void);
	static Player* NewL();
	static Player* NewLC();
	void ConstructL();
	TInt ipos ;
	TInt iPoint ;
	RArray<TInt> handing_cards;
	RArray<TInt> score_cards;

};

#endif

⌨️ 快捷键说明

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