资源简介
代码片段和文件信息
using System.Drawing;
//add
//add
namespace 坦克
{
internal class bullet
{
private readonly bool type; //己方子弹true敌方子弹false
private int direct; //子弹行进方向
private int height = 32;
private int left;
private int top; //子弹坐标(TopLeft)
private int width = 32;
public bullet(int type) // 子弹类构造函数
{
if (type == 6) //己方
this.type = true;
else
this.type = false;
}
public int Top //Top属性
{
get { return top; }
set { top = value; }
}
public int Left //Left属性
{
get { return left; }
set { left = value; }
}
public int Direct //Dir
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-12-17 16:07 .vs\
目录 0 2019-12-17 16:11 .vs\坦克大战\
目录 0 2019-12-17 16:07 .vs\坦克大战\v15\
文件 36352 2018-05-20 16:21 .vs\坦克大战\v15\.suo
目录 0 2019-12-17 16:07 .vs\坦克大战\v15\Server\
目录 0 2019-12-17 16:07 .vs\坦克大战\v15\Server\sqlite3\
文件 0 2018-05-20 16:03 .vs\坦克大战\v15\Server\sqlite3\db.lock
文件 479232 2018-05-20 16:21 .vs\坦克大战\v15\Server\sqlite3\storage.ide
目录 0 2019-12-17 16:11 .vs\坦克大战\v16\
文件 41472 2019-12-17 16:14 .vs\坦克大战\v16\.suo
目录 0 2019-12-17 16:11 .vs\坦克大战\v16\Server\
目录 0 2019-12-17 16:14 .vs\坦克大战\v16\Server\sqlite3\
文件 0 2019-12-17 16:11 .vs\坦克大战\v16\Server\sqlite3\db.lock
文件 503808 2019-12-17 16:14 .vs\坦克大战\v16\Server\sqlite3\storage.ide
文件 887 2008-08-25 20:31 ClassDiagram2.cd
文件 6715 2019-11-17 12:31 Form1.Designer.cs
文件 12133 2019-11-17 12:31 Form1.cs
文件 6571 2019-11-17 12:31 Form1.resx
文件 4725 2019-11-16 20:27 Form2.Designer.cs
文件 2499 2019-11-17 11:44 Form2.cs
文件 5817 2019-11-16 20:27 Form2.resx
文件 4018 2019-11-17 12:15 Form3.Designer.cs
文件 1439 2019-11-17 12:15 Form3.cs
文件 5817 2019-11-17 12:15 Form3.resx
文件 602 2012-08-20 12:35 PlaySound.cs
文件 449 2019-12-17 16:12 Program.cs
目录 0 2019-12-17 16:07 Properties\
文件 1080 2019-11-17 12:25 Properties\AssemblyInfo.cs
文件 2840 2012-08-20 12:30 Properties\Resources.Designer.cs
文件 5957 2008-08-06 19:58 Properties\Resources.resx
文件 1089 2012-08-20 12:30 Properties\Settings.Designer.cs
............此处省略73个文件信息
评论
共有 条评论