BitBoard.cpp 136 B

123456
  1. #include "BitBoard.h"
  2. std::string chessy::Index::getName(void) const
  3. {
  4. return { char('a' + getColumn()), char(getRow() + '1') };
  5. }