搜索资源列表
SnakeProject
- the easyest snake game with mfc for newer
snake
- VC++下编写的贪吃蛇游戏,基于MFC的对话框-Written in VC++ under the Snake game, based on the MFC dialog box. . . .
snake
- 用MFC实现的掌机上的贪吃的蛇小游戏 -snake game
Snake
- 一个经典的游戏代码,很不错,C++语言编写,MFC的应用-A classic game code, very good, C++ language, MFC Application
MFC_SNAKE
- A simple SNAKE game built in MFC
snake
- VC贪食蛇游戏源码。游戏可以设置难度,有不同关卡选择。使用MFC框架写的,蛇身与地图使用MFC画图实现。能够添加不同关卡。-VC Snake game source code. You can set the difficulty of the game, there are different points choices. Written using the MFC framework, snake and map drawing using MFC implementation. The
MFC-Snake
- MFC平台贪吃蛇游戏 用面向对象程序设计思想编写 和简单的一款游戏 算法测试 没有太多可玩性-Snake MFC platform design using object-oriented program written and simple algorithm for testing a game is not much playability
snake.files
- 是基于C++中mfc的一款建议的贪吃蛇小程序,简单易学!很好用的!-This program is a base program.it s very simple to learn it.
Snake
- 用MFC实现的贪吃蛇小游戏,程序较简单。-With the MFC implementation of Snake game, the program is relatively simple.
tanchishe
- 贪吃蛇程序MFC实现,C++语言编写,有类和对象定义,自定义界面以及按钮等-Snake MFC implementation of the program, C++ language, there are class and object definitions, and other custom interfaces and buttons
greedy-snake
- 贪吃蛇,MFC,三个关卡,有障碍,石琎作品-Snake, MFC, three levels, have an obstacle,by shijin
snake
- 基于MFC开发的贪吃蛇,可以调节速度等。程序较简单,适用于初学者-Snake developed based on the MFC, you can adjust the speed. The procedure is relatively simple, suitable for beginners
snake
- 贪吃蛇游戏,基于MFC的,有简单的等级划分,可以对速度进行设置等功能。-Snake game, MFC-based, simple classification, speed settings and other functions.
snake
- 简单的贪吃蛇游戏,适合初学MFC的同学-snake
snake
- MFC双缓存贴图,图片的交并运算,解决屏幕闪烁,实现圆形图片的贴图,简单贪吃蛇游戏-MFC dual cache maps pictures cross and computing, to solve the screen flashes round picture maps, simple Snake game
snake
- MFC制作的 功能较为健全的版本 本人认为最经典的一款了-MFC produced a more robust version of the function I think one of the most classic
Snake
- 用vc++ MFC和open cv 编写的贪吃蛇游戏-snake game
SNAKE
- 在VC++6.0上用MFC开发的一个贪吃蛇的小游戏。-On VC++6.0 MFC Development of a Snake game.
Snake
- 在MFC界面下,通过控制上下左右键实现对蛇的控制,能实现暂停,继续等功能。-Under the MFC interface, through control the up and down or so key control of the snake, can realize pause, continue, and other functions.
Snake
- 1 定义蛇类和食物类,初始化贪吃蛇各项成员变量,包括图像的出现在屏幕的初始位置,长度,以及蛇的行走方向。食物类的定义包括出现的初始位置,以及食物是否被吃掉的判断。 2 用数组初始化长度为3的贪吃蛇,并且默认食物未出现 3 在CView类上运用MFC提供的Windows消息中WM_TIMER消息,运用OnTimer()函数让系统提供一个时钟节拍,更新游戏 4 具体游戏实现,包括蛇撞到自己和围墙都将使游戏结束,判断吃豆等,其中还包括根据蛇的长度来进行游戏难度的改变。 5 具体键盘游戏