示例#1
0
 public TransFormation(TransFormation o)
 {
     //
     m_LeftTop  = o.LeftTop;
     m_Center   = o.Center;
     m_Rotation = o.Rotation;
 }
示例#2
0
文件: Piece.cs 项目: sbvild/tetris
 public Piece(bool[,] _data, PieceType _type, TransFormation _trans, Color _color)
 {
     m_data = _data;
     m_type = _type;
     m_trans = _trans;
     m_color = _color;
 }
示例#3
0
 public Piece(bool[,] _data, PieceType _type, TransFormation _trans, Color _color)
 {
     m_data  = _data;
     m_type  = _type;
     m_trans = _trans;
     m_color = _color;
 }
示例#4
0
文件: Piece.cs 项目: sbvild/tetris
 public TransFormation(TransFormation o)
 {
     //
     m_LeftTop = o.LeftTop;
     m_Center = o.Center;
     m_Rotation = o.Rotation;
 }