基本信息
源码名称:c#小游戏自己编写的一个小程序
源码大小:2.77M
文件格式:.rar
开发语言:C#
更新时间:2023-05-04
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
c#小游戏自己编写的一个小程序
c#小游戏自己编写的一个小程序 里面包含源代码 及实现步骤 一些业余的东西拿给大家分享分享
文件清单
└── MyGame
├── MyGame
│ ├── bin
│ │ └── Debug
│ │ ├── image
│ │ │ ├── ContinueGame.gif
│ │ │ ├── Exit.gif
│ │ │ ├── heroDead.gif
│ │ │ ├── hero.gif
│ │ │ ├── heroHead.jpg
│ │ │ ├── level1.jpg
│ │ │ ├── menu.jpg
│ │ │ ├── monkeyDead.gif
│ │ │ ├── monkey.gif
│ │ │ ├── monkeyHead.jpg
│ │ │ ├── NewGame.gif
│ │ │ ├── Thumbs.db
│ │ │ ├── turtleDead.gif
│ │ │ ├── turtle.gif
│ │ │ ├── turtleHead.jpg
│ │ │ ├── 保存L.gif
│ │ │ └── 退出L.gif
│ │ ├── MyGame.exe
│ │ ├── MyGame.pdb
│ │ ├── MyGame.vshost.exe
│ │ └── MyGame.vshost.exe.manifest
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Heroer.cs
│ ├── MyGame.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── MyGame.csproj.FileListAbsolute.txt
│ │ │ ├── MyGame.csproj.GenerateResource.Cache
│ │ │ ├── MyGame.exe
│ │ │ ├── MyGame.LevelFrom.resources
│ │ │ ├── MyGame.pdb
│ │ │ ├── MyGame.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── MyGame.csproj.FileListAbsolute.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── TurtleHeroer.cs
│ └── TurtleMonster.cs
├── MyGame.sln
└── MyGame.suo
10 directories, 44 files
c#小游戏自己编写的一个小程序
c#小游戏自己编写的一个小程序 里面包含源代码 及实现步骤 一些业余的东西拿给大家分享分享
文件清单
└── MyGame
├── MyGame
│ ├── bin
│ │ └── Debug
│ │ ├── image
│ │ │ ├── ContinueGame.gif
│ │ │ ├── Exit.gif
│ │ │ ├── heroDead.gif
│ │ │ ├── hero.gif
│ │ │ ├── heroHead.jpg
│ │ │ ├── level1.jpg
│ │ │ ├── menu.jpg
│ │ │ ├── monkeyDead.gif
│ │ │ ├── monkey.gif
│ │ │ ├── monkeyHead.jpg
│ │ │ ├── NewGame.gif
│ │ │ ├── Thumbs.db
│ │ │ ├── turtleDead.gif
│ │ │ ├── turtle.gif
│ │ │ ├── turtleHead.jpg
│ │ │ ├── 保存L.gif
│ │ │ └── 退出L.gif
│ │ ├── MyGame.exe
│ │ ├── MyGame.pdb
│ │ ├── MyGame.vshost.exe
│ │ └── MyGame.vshost.exe.manifest
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Heroer.cs
│ ├── MyGame.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── MyGame.csproj.FileListAbsolute.txt
│ │ │ ├── MyGame.csproj.GenerateResource.Cache
│ │ │ ├── MyGame.exe
│ │ │ ├── MyGame.LevelFrom.resources
│ │ │ ├── MyGame.pdb
│ │ │ ├── MyGame.Properties.Resources.resources
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── MyGame.csproj.FileListAbsolute.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── TurtleHeroer.cs
│ └── TurtleMonster.cs
├── MyGame.sln
└── MyGame.suo
10 directories, 44 files