文件名称:C# 俄罗斯方块 源代码
文件大小:60KB
文件格式:RAR
更新时间:2014-03-13 09:53:51
c# 源代码 俄罗斯方块
C# 俄罗斯方块 源代码
private static object Version = new object();
// 当前游戏得分
private int score = 0;
// 游戏开始标记
private bool playing=false;
// 图形
private Shape shape;
// 地面
private Ground ground;
// 图形工厂
private ShapeFactory shapeFactory;
// 游戏面板
private GamePanel gamePanel;
// 游戏提示信息
private Label lblMsg;
// 游戏得分
private Label lblScore;
// 游戏监听器
private List
【文件预览】:
tetris
----tetris.csproj(3KB)
----frmMain.Designer.cs(2KB)
----bin()
--------Debug()
----obj()
--------Debug()
----Properties()
--------Resources.Designer.cs(3KB)
--------Settings.settings(249B)
--------Resources.resx(5KB)
--------Settings.Designer.cs(1KB)
--------AssemblyInfo.cs(1KB)
----Program.cs(1KB)
----frmMain.cs(997B)
----frmMain.resx(6KB)
org.framework.game
----src()
--------tetris()