Files

8 lines
87 B
C++
Raw Permalink Normal View History

2014-09-30 17:09:22 +03:00
#include "rook.h"
void rook::move(int x, int y)
{
this->x = x;
this->y = y;
}