【例子介绍】C# GDI 局域网对战小游戏
一个关于C# GDI 局域网对战小游戏,可以通过输入对方ip进行局域网对战
【相关图片】
【源码结构】
文件清单
└── LanGame
├── LanGame
│ ├── About.cs
│ ├── About.Designer.cs
│ ├── About.resx
│ ├── Base
│ │ ├── DefineDate.cs
│ │ └── InitResource.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── LanGame.exe
│ │ │ ├── LanGame.pdb
│ │ │ ├── LanGame.vshost.exe
│ │ │ └── LanGame.vshost.exe.manifest
│ │ └── Release
│ ├── Cry.cs
│ ├── Cry.Designer.cs
│ ├── Cry.resx
│ ├── Event
│ │ └── Keyboard.cs
│ ├── GameMain
│ │ ├── GameManage.cs
│ │ ├── GameStatusFrames.cs
│ │ └── HitCheck.cs
│ ├── IpAdd.cs
│ ├── IpAdd.Designer.cs
│ ├── IpAdd.resx
│ ├── LanGame.cs
│ ├── LanGame.csproj
│ ├── LanGame.Designer.cs
│ ├── LanGame.resx
│ ├── Laugh.cs
│ ├── Laugh.Designer.cs
│ ├── Laugh.resx
│ ├── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ ├── LanGame.About.resources
│ │ ├── LanGame.Cry.resources
│ │ ├── LanGame.csproj.FileListAbsolute.txt
│ │ ├── LanGame.exe
│ │ ├── LanGame.IpAdd.resources
│ │ ├── LanGame.LanGame.resources
│ │ ├── LanGame.Laugh.resources
│ │ ├── LanGame.pdb
│ │ ├── LanGame.Properties.Resources.resources
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── c195.png
│ │ ├── cry.jpg
│ │ ├── End.gif
│ │ ├── Enemy.png
│ │ ├── Floor.png
│ │ ├── Hero.png
│ │ ├── laugh1.jpg
│ │ ├── laugh.jpg
│ │ ├── Player1.png
│ │ ├── Player2.png
│ │ ├── 龙骑士.bmp
│ │ └── 龙骑士.png
│ └── Thing
│ ├── BaseClass.cs
│ ├── Bullet.cs
│ ├── Map.cs
│ └── Player.cs
├── LanGame.sln
└── LanGame.suo
15 directories, 63 files
评论