10 lines
111 B
C++
10 lines
111 B
C++
#include <cstdlib>
|
|
|
|
#include "bishop.h"
|
|
|
|
void bishop::move(int x, int y)
|
|
{
|
|
this->x = x;
|
|
this->y = y;
|
|
}
|