嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C# 台球游戏
C#入门设计,方便你的学习,更好的理解VS的可视化编程,期待你的补充
.
├── C# 台球游戏_台球.rar
└── 台球
├── CSharpSnooker.sln
├── CSharpSnooker.suo
├── CSharpSnookerCore
│ ├── CSharpSnookerCore.csproj
│ ├── Model
│ │ ├── Ball.cs
│ │ ├── BallObserver.cs
│ │ ├── BallPosition.cs
│ │ ├── BorderObserver.cs
│ │ ├── DiagonalBorder.cs
│ │ ├── IPocketObserver.cs
│ │ ├── IRemotingObserver.cs
│ │ ├── Player.cs
│ │ ├── Pocket.cs
│ │ ├── TableBorder.cs
│ │ └── Vector2D.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── CSharpSnookerCore.dll
│ │ └── CSharpSnookerCore.pdb
│ └── obj
│ ├── CSharpSnookerCore.csproj.FileListAbsolute.txt
│ └── Debug
│ ├── CSharpSnookerCore.dll
│ ├── CSharpSnookerCore.pdb
│ └── TempPE
├── CSharpSnookerUI
│ ├── AntiFlickerPanel.cs
│ ├── App.config
│ ├── Assemblies
│ │ └── irrKlang.NET2.0.dll
│ ├── CSharpSnookerUI.csproj
│ ├── CSharpSnookerUI.csproj.user
│ ├── Cia de frmTable.Designer.cs
│ ├── Cia de frmTable.cs
│ ├── GifHelper.cs
│ ├── Images
│ │ ├── BlackBall.PNG
│ │ ├── BlueBall.PNG
│ │ ├── BrownBall.PNG
│ │ ├── GreenBall.PNG
│ │ ├── PinkBall.PNG
│ │ ├── RedBall.PNG
│ │ ├── Score.jpg
│ │ ├── ShadowBall.PNG
│ │ ├── Thumbs.db
│ │ ├── YellowBall.PNG
│ │ ├── ball.PNG
│ │ ├── metal5.jpg
│ │ ├── questionball.PNG
│ │ ├── score_wallpaper.JPG
│ │ ├── snookerTableBlue.JPG
│ │ ├── snookerTableBlue2.JPG
│ │ ├── snookertable.PNG
│ │ ├── table.PNG
│ │ ├── tableBlue.jpg
│ │ ├── wait.gif
│ │ └── whiteball.PNG
│ ├── In
│ ├── Out
│ │ └── BallPositionList.xml
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── snookerTableBlue.JPG
│ │ ├── snookerTableBlue1.JPG
│ │ ├── snookerTableBlue2.JPG
│ │ ├── snookerTableBlue3.JPG
│ │ └── tableBlue.jpg
│ ├── Snapshots
│ │ └── 000.txt
│ ├── SoundPlayerAsync.cs
│ ├── Sounds
│ │ ├── Bank01.wav
│ │ ├── Bank02.wav
│ │ ├── Hit01.wav
│ │ ├── Hit02.wav
│ │ ├── Hit03.wav
│ │ ├── Hit04.wav
│ │ ├── Hit05.wav
│ │ ├── Hit06.wav
│ │ ├── Shot01.wav
│ │ └── fall.wav
│ ├── bin
│ │ └── Debug
│ │ ├── CSharpSnookerCore.dll
│ │ ├── CSharpSnookerCore.pdb
│ │ ├── CSharpSnookerUI.exe
│ │ ├── CSharpSnookerUI.exe.config
│ │ ├── CSharpSnookerUI.pdb
│ │ ├── CSharpSnookerUI.vshost.exe
│ │ ├── CSharpSnookerUI.vshost.exe.config
│ │ ├── Images
│ │ │ ├── BlackBall.PNG
│ │ │ ├── BlueBall.PNG
│ │ │ ├── BrownBall.PNG
│ │ │ ├── GreenBall.PNG
│ │ │ ├── PinkBall.PNG
│ │ │ ├── RedBall.PNG
│ │ │ ├── ShadowBall.PNG
│ │ │ ├── YellowBall.PNG
│ │ │ ├── ball.PNG
│ │ │ ├── questionball.PNG
│ │ │ ├── snookerTableBlue.JPG
│ │ │ ├── snookertable.PNG
│ │ │ ├── table.PNG
│ │ │ ├── tableBlue.jpg
│ │ │ ├── wait.gif
│ │ │ └── whiteball.PNG
│ │ ├── Out
│ │ │ └── BallPositionList.xml
│ │ ├── Snapshots
│ │ │ └── 000.txt
│ │ ├── Sounds
│ │ │ ├── Bank01.wav
│ │ │ ├── Bank02.wav
│ │ │ ├── Hit01.wav
│ │ │ ├── Hit02.wav
│ │ │ ├── Hit03.wav
│ │ │ ├── Hit04.wav
│ │ │ ├── Hit05.wav
│ │ │ ├── Hit06.wav
│ │ │ ├── Shot01.wav
│ │ │ └── fall.wav
│ │ └── irrKlang.NET2.0.dll
│ ├── coredll
│ │ ├── CoreDll.dll
│ │ └── readme.txt
│ ├── frmTable.Designer.cs
│ ├── frmTable.cs
│ ├── frmTable.resx
│ └── obj
│ ├── CSharpSnookerUI.csproj.FileListAbsolute.txt
│ └── Debug
│ ├── CSharpSnookerUI.Properties.Resources.resources
│ ├── CSharpSnookerUI.csproj.GenerateResource.Cache
│ ├── CSharpSnookerUI.exe
│ ├── CSharpSnookerUI.frmTable.resources
│ ├── CSharpSnookerUI.pdb
│ ├── ResolveAssemblyReference.cache
│ └── TempPE
│ └── Properties.Resources.Designer.cs.dll
├── Cpbcw_20110719085510.rar
├── logo.gif
├── 更多C#源码下载.url
└── 下载必读.txt
28 directories, 127 files