chessitem.cpp 143 B

1234567891011
  1. #include "chessitem.h"
  2. ChessItem::ChessItem()
  3. {
  4. }
  5. ChessItem::ChessItem(QPoint point,bool isBlack)
  6. {
  7. _pt = point;
  8. _black = isBlack;
  9. }