8 lines
87 B
C++
8 lines
87 B
C++
#include "rook.h"
|
|
|
|
void rook::move(int x, int y)
|
|
{
|
|
this->x = x;
|
|
this->y = y;
|
|
}
|