【例子介绍】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
评论