基本信息
源码名称:用C#编写的推箱子游戏
源码大小:0.13M
文件格式:.rar
开发语言:C#
更新时间:2023-06-25
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
用C#编写的推箱子游戏
将推箱子游戏进行改进。 用面向对象的方法设计。
文件清单
└── MyBoxMan
├── MyBoxMan
│ ├── Ant.cs
│ ├── Background.cs
│ ├── bin
│ │ └── Debug
│ │ ├── image
│ │ │ ├── ant_down.bmp
│ │ │ ├── ant_down_ok.bmp
│ │ │ ├── ant_left.bmp
│ │ │ ├── ant_left_ok.bmp
│ │ │ ├── ant_right.bmp
│ │ │ ├── ant_right_ok.bmp
│ │ │ ├── ant_up.bmp
│ │ │ ├── ant_up_ok.bmp
│ │ │ ├── back.bmp
│ │ │ ├── bread.bmp
│ │ │ ├── bread_ok.bmp
│ │ │ ├── hole.bmp
│ │ │ └── wall.bmp
│ │ ├── level.xml
│ │ ├── level.xml.bak
│ │ ├── MyBoxMan.exe
│ │ ├── MyBoxMan.pdb
│ │ └── MyBoxMan.vshost.exe
│ ├── Bread.cs
│ ├── ClassDiagram1.cd
│ ├── Frm_Main.cs
│ ├── Frm_Main.Designer.cs
│ ├── Frm_Main.resx
│ ├── GameManage.cs
│ ├── GameStatus.cs
│ ├── Hole.cs
│ ├── Module.cs
│ ├── MyBoxMan.csproj
│ ├── MyBoxMan.csproj.user
│ ├── obj
│ │ ├── Debug
│ │ │ ├── MyBoxMan.csproj.GenerateResource.Cache
│ │ │ ├── MyBoxMan.exe
│ │ │ ├── MyBoxMan.frm_Main.resources
│ │ │ ├── MyBoxMan.pdb
│ │ │ ├── MyBoxMan.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ └── MyBoxMan.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Wall.cs
│ └── XmlManage.cs
├── MyBoxMan.sln
└── MyBoxMan.suo
10 directories, 47 files
用C#编写的推箱子游戏
将推箱子游戏进行改进。 用面向对象的方法设计。
文件清单
└── MyBoxMan
├── MyBoxMan
│ ├── Ant.cs
│ ├── Background.cs
│ ├── bin
│ │ └── Debug
│ │ ├── image
│ │ │ ├── ant_down.bmp
│ │ │ ├── ant_down_ok.bmp
│ │ │ ├── ant_left.bmp
│ │ │ ├── ant_left_ok.bmp
│ │ │ ├── ant_right.bmp
│ │ │ ├── ant_right_ok.bmp
│ │ │ ├── ant_up.bmp
│ │ │ ├── ant_up_ok.bmp
│ │ │ ├── back.bmp
│ │ │ ├── bread.bmp
│ │ │ ├── bread_ok.bmp
│ │ │ ├── hole.bmp
│ │ │ └── wall.bmp
│ │ ├── level.xml
│ │ ├── level.xml.bak
│ │ ├── MyBoxMan.exe
│ │ ├── MyBoxMan.pdb
│ │ └── MyBoxMan.vshost.exe
│ ├── Bread.cs
│ ├── ClassDiagram1.cd
│ ├── Frm_Main.cs
│ ├── Frm_Main.Designer.cs
│ ├── Frm_Main.resx
│ ├── GameManage.cs
│ ├── GameStatus.cs
│ ├── Hole.cs
│ ├── Module.cs
│ ├── MyBoxMan.csproj
│ ├── MyBoxMan.csproj.user
│ ├── obj
│ │ ├── Debug
│ │ │ ├── MyBoxMan.csproj.GenerateResource.Cache
│ │ │ ├── MyBoxMan.exe
│ │ │ ├── MyBoxMan.frm_Main.resources
│ │ │ ├── MyBoxMan.pdb
│ │ │ ├── MyBoxMan.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ └── MyBoxMan.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Wall.cs
│ └── XmlManage.cs
├── MyBoxMan.sln
└── MyBoxMan.suo
10 directories, 47 files