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

📄 goldview.h

📁 网狐2008最新版本梭哈游戏代码!很难得到的
💻 H
字号:
#ifndef GOLD_VIEW_HEAD_FILE
#define GOLD_VIEW_HEAD_FILE

#pragma once

#include "Stdafx.h"

//////////////////////////////////////////////////////////////////////////

//筹码视图类
class CGoldView
{
	//变量定义
public:
	LONG								m_lGold;						//筹码数目
	LONG								m_lMaxLayer;					//最大层数
	LONG								m_lGoldCount[6];	 			//筹码数目

	//辅助变量
protected:
	static bool							m_bInit;						//初始标志
	static CSkinImage					m_ImageGold;					//筹码图片

	//函数定义
public:
	//构造函数
	CGoldView();
	//析构函数
	virtual ~CGoldView();

	//功能函数
public:
	//设置筹码
	void SetGold(LONG lGold);
	//获取筹码
	LONG GetGold() { return m_lGold; };
	//设置层数
	void SetMaxGoldLayer(LONG lMaxLayer);
	//绘画筹码
	void DrawGoldView(CDC * pDC, int nXPos, int nYPos);

	//内部函数
private:
	//调整筹码层
	void RectifyGoldLayer();
	//整性变字符
	LPCTSTR GetGlodString(LONG lGold, TCHAR szString[]);
};

//////////////////////////////////////////////////////////////////////////

#endif

⌨️ 快捷键说明

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