基本信息
源码名称:吃豆人 Pac-Man
源码大小:25.73M
文件格式:.rar
开发语言:C/C++
更新时间:2021-06-29
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 10 元 
   源码介绍

开发环境  vs2017 win10 

画图用的全是调用的api函数,没有用第三方图形库

Win32吃豆人

├── Debug
│   ├── Win32吃豆人.Build.CppClean.log
│   ├── Win32吃豆人.exe
│   ├── Win32吃豆人.ilk
│   ├── Win32吃豆人.log
│   ├── Win32吃豆人.pch
│   ├── Win32吃豆人.pdb
│   ├── Win32吃豆人.res
│   ├── Win32吃豆人.tlog
│   │   ├── CL.command.1.tlog
│   │   ├── CL.read.1.tlog
│   │   ├── CL.write.1.tlog
│   │   ├── Win32吃豆人.lastbuildstate
│   │   ├── link.command.1.tlog
│   │   ├── link.read.1.tlog
│   │   ├── link.write.1.tlog
│   │   ├── rc.command.1.tlog
│   │   ├── rc.read.1.tlog
│   │   └── rc.write.1.tlog
│   ├── game.obj
│   ├── image.obj
│   ├── stdafx.obj
│   ├── vc141.idb
│   ├── vc141.pdb
│   ├── 怪物.obj
│   ├── 窗体.obj
│   └── 公用函数.obj
├── Release
│   ├── Win32吃豆人.Build.CppClean.log
│   ├── Win32吃豆人.exe
│   ├── Win32吃豆人.iobj
│   ├── Win32吃豆人.ipdb
│   ├── Win32吃豆人.log
│   ├── Win32吃豆人.pch
│   ├── Win32吃豆人.pdb
│   ├── Win32吃豆人.res
│   ├── Win32吃豆人.tlog
│   │   ├── CL.command.1.tlog
│   │   ├── CL.read.1.tlog
│   │   ├── CL.write.1.tlog
│   │   ├── Win32吃豆人.lastbuildstate
│   │   ├── Win32吃豆人.write.1u.tlog
│   │   ├── link.command.1.tlog
│   │   ├── link.read.1.tlog
│   │   ├── link.write.1.tlog
│   │   ├── rc.command.1.tlog
│   │   ├── rc.read.1.tlog
│   │   └── rc.write.1.tlog
│   ├── game.obj
│   ├── image.obj
│   ├── stdafx.obj
│   ├── vc141.pdb
│   ├── 怪物.obj
│   ├── 窗体.obj
│   └── 公用函数.obj
├── Resource.h
├── Win32吃豆人.aps
├── Win32吃豆人.exe
├── Win32吃豆人.ico
├── Win32吃豆人.rc
├── Win32吃豆人.sln
├── Win32吃豆人.vcxproj
├── Win32吃豆人.vcxproj.filters
├── game.cpp
├── image.cpp
├── image.h
├── res
│   ├── blue.bmp
│   ├── dead.bmp
│   ├── eat1.wav
│   ├── eat2.wav
│   ├── fight.wav
│   ├── lose.wav
│   ├── orange.bmp
│   ├── pink.bmp
│   ├── red.bmp
│   ├── win.wav
│   └── 背景音乐.mp3
├── small.ico
├── stdafx.cpp
├── stdafx.h
├── targetver.h
├── 怪物.cpp
├── 窗体.cpp
├── 寻路.h
├── 怪物.h
├── 公用函数.cpp
└── 背景音乐.mp3

5 directories, 83 files