資源簡介
發(fā)出一個游戲給大家下來玩,借鑒,參考 ,謝謝大家的支持?。。。?img width=510 src=http://www.sh-liguang.com/pic/84223.jpg />
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Text;
using?DragonQuest.General;
using?System.Drawing;
namespace?DragonQuest
{
????public?class?BloodBar?:?Element
????{
????????//血條的單位長度
????????private?const?int?WIDTH?=?1;
????????//血條的高度
????????private?const?int?HEIGHT?=?10;
????????private?int?allLife?nowLife;
????????public?BloodBar(int?x?int?y?int?allLife)
????????????:?base(x?y)
????????{
????????????this.allLife?=?allLife;
????????????this.nowLife?=?allLife;
????????}
????????public?int?NowLife
????????{
????????????set
????????????{
????????????????if?(nowLife?>?allLife)
????????????????{
????????????????????allLife?=?nowLife;
????????????????}
????????????????nowLife?=?value;
????????????}
????????}
????????public?override?void?Draw(System.Drawing.Graphics?g)
????????{
????????????g.DrawString(“Life:“?new?Font(“Arial“?10f)?new?SolidBrush(Color.Red)?x?-?30?y?-?3);
????????????g.DrawRectangle(new?Pen(Color.Red)?x?y?WIDTH?*?allLife?HEIGHT);
????????????g.FillRectangle(new?SolidBrush(Color.Red)?x?y?WIDTH?*?nowLife?HEIGHT);
????????}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????36352??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\DragonQuest.exe
?????文件?????132608??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\DragonQuest.pdb
?????文件??????14328??2010-12-22?11:26??完整版游戲\DragonQuest\bin\Debug\DragonQuest.vshost.exe
?????文件????????490??2007-07-21?01:33??完整版游戲\DragonQuest\bin\Debug\DragonQuest.vshost.exe.manifest
?????文件??????31747??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\background.png
?????文件??????35870??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\background1.png
?????文件????????284??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast1_0.gif
?????文件????????423??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast1_1.gif
?????文件????????680??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast1_2.gif
?????文件????????740??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast1_3.gif
?????文件????????765??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast1_4.gif
?????文件????????624??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast1_5.gif
?????文件????????500??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast1_6.gif
?????文件????????286??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast1_7.gif
?????文件????????241??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast1_8.gif
?????文件????????907??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast2_0.gif
?????文件???????1224??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast2_1.gif
?????文件???????5288??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast2_2.gif
?????文件???????1971??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast2_3.gif
?????文件???????6458??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast2_4.gif
?????文件???????8367??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast2_5.gif
?????文件???????9076??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast2_6.gif
?????文件???????8988??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast2_7.gif
?????文件???????3592??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast2_8.gif
?????文件??????22019??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast3_0.gif
?????文件??????19907??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast3_1.gif
?????文件??????19907??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast3_2.gif
?????文件??????18945??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast3_3.gif
?????文件??????18945??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast3_4.gif
?????文件??????14283??2010-12-22?11:22??完整版游戲\DragonQuest\bin\Debug\images\blast3_5.gif
............此處省略158個文件信息
評論
共有 條評論