Files
nchess-cpp/bishop.cpp
2014-09-30 17:09:22 +03:00

10 lines
111 B
C++

#include <cstdlib>
#include "bishop.h"
void bishop::move(int x, int y)
{
this->x = x;
this->y = y;
}