using System.Drawing;
//add
namespace 俄罗斯方块
{
internal class Game
{
public const int BlockImageWidth = 21; //方砖中每个小方格的大小
public const int BlockImageHeight = 21;
public const int PlayingFieldWidth = 10; //游戏面板大小
public const int PlayingFieldHeight = 20;