【例子介绍】C#源代码超级打飞机小游戏
可以实现超级飞机作为子弹的坦克游戏,C#代码简单易懂,可以自己修改,boss全屏发子弹,让你躲无可躲
【相关图片】
【源码结构】
文件清单
└── TankWar
├── TankWar
│ ├── bin
│ │ └── Debug
│ │ ├── TankWar.exe
│ │ ├── TankWar.pdb
│ │ └── TankWar.vshost.exe
│ ├── Bomb.cs
│ ├── Explode.cs
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Gift.cs
│ ├── images
│ │ ├── bluespace.png
│ │ ├── explosion2.png
│ │ ├── explosion.png
│ │ ├── gift1.png
│ │ ├── gift2.png
│ │ ├── gift3.png
│ │ ├── gift4.png
│ │ ├── missile6.gif
│ │ ├── plasmashot.png
│ │ ├── powerup_gun.png
│ │ ├── ship1.png
│ │ ├── ship4.png
│ │ ├── ship5.png
│ │ ├── ship.PNG
│ │ ├── spaceship.png
│ │ ├── tank11.gif
│ │ ├── tank21.gif
│ │ ├── tank6.gif
│ │ ├── tankX.gif
│ │ └── 新建文件夹
│ ├── Missile.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ ├── TankWar.csproj.GenerateResource.Cache
│ │ │ ├── TankWar.exe
│ │ │ ├── TankWar.FrmMain.resources
│ │ │ ├── TankWar.pdb
│ │ │ ├── TankWar.Properties.Resources.resources
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── TankWar.csproj.FileListAbsolute.txt
│ │ └── TankWar.csproj.FileList.txt
│ ├── Plane.cs
│ ├── PlaneGroup.cs
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Scenario.cs
│ ├── SuperShip.cs
│ ├── Tank.cs
│ └── TankWar.csproj
├── TankWar.sln
└── TankWar.suo
11 directories, 51 files
评论