• 大小: 0.37M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-03-26
  • 语言: C#
  • 标签: c#  

资源简介


为了复习C#知识,用了3天时间去编写了2048小游戏,基本上完成了游戏的功能!各路大神,不喜勿喷啊。谢谢!

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _2048
{
    class CellsLocation
    {
        private int x;//格子的横坐标
        private int y;//格子的纵坐标

        public int X
        {
            get { return x; }
            set { x = value; }
        }

        public int Y
        {
            get { return y; }
            set { y = value; }
        }

        public CellsLocation()
        {
        }

        public CellsLocation(int xint y)
        {
            this.X = x;
            this.Y = y;
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         854  2014-08-06 17:20  2048小游戏\2048.sln
     文件       29184  2014-08-18 16:35  2048小游戏\2048.suo
     文件       36864  2014-08-17 00:51  2048小游戏\2048.v12.suo
     目录           0  2014-08-18 22:03  2048小游戏\2048\
     文件        7289  2014-08-18 15:37  2048小游戏\2048\2048.csproj
     文件         478  2014-08-14 22:33  2048小游戏\2048\2048.csproj.user
     文件       67646  2014-08-14 22:31  2048小游戏\2048\2048.ico
     目录           0  2014-08-06 21:48  2048小游戏\2048\bin\
     目录           0  2014-08-18 22:53  2048小游戏\2048\bin\Debug\
     文件      248320  2014-08-18 16:34  2048小游戏\2048\bin\Debug\2048.exe
     文件       71168  2014-08-18 16:34  2048小游戏\2048\bin\Debug\2048.pdb
     文件        3584  2014-08-13 22:24  2048小游戏\2048\bin\Debug\2048.v12.suo
     文件       11600  2014-08-18 16:27  2048小游戏\2048\bin\Debug\2048.vshost.exe
     文件         490  2010-03-17 22:39  2048小游戏\2048\bin\Debug\2048.vshost.exe.manifest
     文件        2509  2014-08-17 23:19  2048小游戏\2048\bin\Debug\下载说明.txt
     目录           0  2014-08-06 19:46  2048小游戏\2048\bin\Release\
     文件         636  2014-08-08 19:02  2048小游戏\2048\CellsLocation.cs
     文件         224  2014-08-13 19:35  2048小游戏\2048\DB.cs
     文件       31244  2014-08-18 16:24  2048小游戏\2048\Fmain.cs
     文件       13578  2014-08-18 16:24  2048小游戏\2048\Fmain.Designer.cs
     文件      107785  2014-08-18 16:24  2048小游戏\2048\Fmain.resx
     文件         939  2014-08-18 15:35  2048小游戏\2048\FMessage.cs
     文件        4994  2014-08-18 15:35  2048小游戏\2048\FMessage.Designer.cs
     文件        5817  2014-08-18 15:35  2048小游戏\2048\FMessage.resx
     文件        1380  2014-08-18 16:34  2048小游戏\2048\FSetting.cs
     文件        7810  2014-08-18 16:34  2048小游戏\2048\FSetting.Designer.cs
     文件        5817  2014-08-18 16:34  2048小游戏\2048\FSetting.resx
     文件         874  2014-08-15 17:07  2048小游戏\2048\Game.cs
     文件         839  2014-08-18 12:00  2048小游戏\2048\GameOver.cs
     文件        8687  2014-08-18 12:00  2048小游戏\2048\GameOver.Designer.cs
     文件      107785  2014-08-18 12:00  2048小游戏\2048\GameOver.resx
............此处省略36个文件信息

评论

共有 条评论