俄罗斯方块 采用MFC和GDI+编写的,自己感觉写得不是很好,不过看上去还行

源代码在线查看: about.cpp

软件大小: 3267 K
上传用户: bilika
关键词: MFC GDI 俄罗斯方块 编写
下载地址: 免注册下载 普通下载 VIP

相关代码

				// About.cpp : 实现文件
				//
				
				#include "stdafx.h"
				#include "About.h"
				
				
				// CAbout 对话框
				
				IMPLEMENT_DYNAMIC(CAbout, CDialog)
				
				CAbout::CAbout(CWnd* pParent /*=NULL*/)
					: CDialog(CAbout::IDD, pParent)
				{
				
				}
				
				CAbout::~CAbout()
				{
				}
				
				void CAbout::DoDataExchange(CDataExchange* pDX)
				{
					CDialog::DoDataExchange(pDX);
				}
				
				
				BEGIN_MESSAGE_MAP(CAbout, CDialog)
				END_MESSAGE_MAP()
				
				
				// CAbout 消息处理程序
							

相关资源