public TransFormation(TransFormation o) { // m_LeftTop = o.LeftTop; m_Center = o.Center; m_Rotation = o.Rotation; }
public Piece(bool[,] _data, PieceType _type, TransFormation _trans, Color _color) { m_data = _data; m_type = _type; m_trans = _trans; m_color = _color; }